├── .gitignore ├── LICENSE ├── README.md ├── apps ├── basic_channel │ ├── altactilegesture-9dd1d7 │ │ ├── icon.png │ │ └── manifest.xml │ ├── animationMode │ │ ├── .metadata │ │ ├── animationMode.pml │ │ ├── behavior.xar │ │ └── manifest.xml │ ├── animations │ │ ├── .metadata │ │ ├── LED │ │ │ ├── Angry │ │ │ │ └── box.xar │ │ │ ├── Blink │ │ │ │ └── box.xar │ │ │ ├── BlinkRandom │ │ │ │ └── box.xar │ │ │ ├── Cautious │ │ │ │ └── box.xar │ │ │ ├── CircleEyes │ │ │ │ └── behavior.xar │ │ │ ├── EyesOnOff │ │ │ │ └── box.xar │ │ │ ├── Happy │ │ │ │ └── box.xar │ │ │ ├── Laugh │ │ │ │ └── box.xar │ │ │ ├── Mischievous │ │ │ │ └── box.xar │ │ │ ├── Sad │ │ │ │ └── box.xar │ │ │ ├── Shy │ │ │ │ └── box.xar │ │ │ ├── Sick │ │ │ │ └── box.xar │ │ │ ├── Thinking │ │ │ │ └── box.xar │ │ │ ├── Zen │ │ │ │ └── box.xar │ │ │ └── xalinfo │ │ ├── Stand │ │ │ ├── BodyTalk │ │ │ │ ├── Listening │ │ │ │ │ ├── Listening_1 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Listening_2 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Listening_3 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Listening_4 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Listening_5 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Listening_6 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Listening_7 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ └── xalinfo │ │ │ │ ├── Speaking │ │ │ │ │ ├── BodyTalk_1 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── BodyTalk_10 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── BodyTalk_11 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── BodyTalk_12 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── BodyTalk_13 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── BodyTalk_14 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── BodyTalk_15 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── BodyTalk_16 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── BodyTalk_2 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── BodyTalk_3 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── BodyTalk_4 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── BodyTalk_5 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── BodyTalk_6 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── BodyTalk_7 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── BodyTalk_8 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── BodyTalk_9 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ └── xalinfo │ │ │ │ ├── Thinking │ │ │ │ │ ├── Remember_1 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Remember_2 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Remember_3 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── ThinkingLoop_1 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── ThinkingLoop_2 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ └── xalinfo │ │ │ │ └── xalinfo │ │ │ ├── Emotions │ │ │ │ ├── Negative │ │ │ │ │ ├── Angry_1 │ │ │ │ │ │ ├── angry8_short.ogg │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Angry_2 │ │ │ │ │ │ ├── angry5.ogg │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Angry_3 │ │ │ │ │ │ ├── behavior.xar │ │ │ │ │ │ └── roh1.ogg │ │ │ │ │ ├── Angry_4 │ │ │ │ │ │ ├── angry2.ogg │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Anxious_1 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Bored_1 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Bored_2 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Disappointed_1 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Exhausted_1 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Exhausted_2 │ │ │ │ │ │ ├── behavior.xar │ │ │ │ │ │ └── relieved1.ogg │ │ │ │ │ ├── Fear_1 │ │ │ │ │ │ ├── behavior.xar │ │ │ │ │ │ └── surprise3.ogg │ │ │ │ │ ├── Fear_2 │ │ │ │ │ │ ├── behavior.xar │ │ │ │ │ │ ├── hey6.ogg │ │ │ │ │ │ └── relieved1.ogg │ │ │ │ │ ├── Fearful_1 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Frustrated_1 │ │ │ │ │ │ ├── behavior.xar │ │ │ │ │ │ └── roh1.ogg │ │ │ │ │ ├── Humiliated_1 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Hurt_1 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Hurt_2 │ │ │ │ │ │ ├── behavior.xar │ │ │ │ │ │ └── hey17.ogg │ │ │ │ │ ├── Late_1 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Sad_1 │ │ │ │ │ │ ├── behavior.xar │ │ │ │ │ │ └── cry1.ogg │ │ │ │ │ ├── Sad_2 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Shocked_1 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Sorry_1 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Surprise_1 │ │ │ │ │ │ ├── behavior.xar │ │ │ │ │ │ └── surprise3.ogg │ │ │ │ │ ├── Surprise_2 │ │ │ │ │ │ ├── behavior.xar │ │ │ │ │ │ └── surprise3.ogg │ │ │ │ │ ├── Surprise_3 │ │ │ │ │ │ ├── behavior.xar │ │ │ │ │ │ └── surprise3.ogg │ │ │ │ │ └── xalinfo │ │ │ │ ├── Neutral │ │ │ │ │ ├── Alienated_1 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── AskForAttention_1 │ │ │ │ │ │ ├── behavior.xar │ │ │ │ │ │ └── psst2.ogg │ │ │ │ │ ├── AskForAttention_2 │ │ │ │ │ │ ├── behavior.xar │ │ │ │ │ │ └── hey7.ogg │ │ │ │ │ ├── AskForAttention_3 │ │ │ │ │ │ ├── behavior.xar │ │ │ │ │ │ └── cough10.ogg │ │ │ │ │ ├── Cautious_1 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Confused_1 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Determined_1 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Embarrassed_1 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Hesitation_1 │ │ │ │ │ │ ├── behavior.xar │ │ │ │ │ │ └── roh1.ogg │ │ │ │ │ ├── Innocent_1 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Lonely_1 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Mischievous_1 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Puzzled_1 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Sneeze │ │ │ │ │ │ ├── behavior.xar │ │ │ │ │ │ └── sneeze6.ogg │ │ │ │ │ ├── Stubborn_1 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Suspicious_1 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ └── xalinfo │ │ │ │ ├── Positive │ │ │ │ │ ├── Amused_1 │ │ │ │ │ │ ├── behavior.xar │ │ │ │ │ │ └── laugh2.ogg │ │ │ │ │ ├── Confident_1 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Ecstatic_1 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Enthusiastic_1 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Excited_1 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Excited_2 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Excited_3 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Happy_1 │ │ │ │ │ │ ├── behavior.xar │ │ │ │ │ │ └── yahou4.ogg │ │ │ │ │ ├── Happy_2 │ │ │ │ │ │ ├── aie_hard.ogg │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Happy_3 │ │ │ │ │ │ ├── behavior.xar │ │ │ │ │ │ └── hey6.ogg │ │ │ │ │ ├── Happy_4 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Hungry_1 │ │ │ │ │ │ ├── behavior.xar │ │ │ │ │ │ ├── contentement2.ogg │ │ │ │ │ │ └── sniffing1.ogg │ │ │ │ │ ├── Hysterical_1 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Interested_1 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Interested_2 │ │ │ │ │ │ ├── behavior.xar │ │ │ │ │ │ └── interested3.ogg │ │ │ │ │ ├── Laugh_1 │ │ │ │ │ │ ├── behavior.xar │ │ │ │ │ │ └── ptdr3.ogg │ │ │ │ │ ├── Laugh_2 │ │ │ │ │ │ ├── behavior.xar │ │ │ │ │ │ └── laugh19.ogg │ │ │ │ │ ├── Laugh_3 │ │ │ │ │ │ ├── behavior.xar │ │ │ │ │ │ └── laugh1.ogg │ │ │ │ │ ├── Mocker_1 │ │ │ │ │ │ ├── behavior.xar │ │ │ │ │ │ └── laugh10.ogg │ │ │ │ │ ├── Optimistic_1 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Peaceful_1 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Proud_1 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Proud_2 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Proud_3 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Relieved_1 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Shy_1 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Shy_2 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Sure_1 │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Winner_1 │ │ │ │ │ │ ├── applause1.ogg │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ ├── Winner_2 │ │ │ │ │ │ ├── applause1.ogg │ │ │ │ │ │ └── behavior.xar │ │ │ │ │ └── xalinfo │ │ │ │ └── xalinfo │ │ │ ├── Gestures │ │ │ │ ├── Angry_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Angry_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Angry_3 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── BowShort_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── BowShort_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── BowShort_3 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── But_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── CalmDown_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── CalmDown_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── CalmDown_3 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── CalmDown_4 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── CalmDown_5 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── CalmDown_6 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Choice_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── ComeOn_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Confused_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Confused_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── CountFive_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── CountFour_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── CountMore_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── CountOne_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── CountThree_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── CountTwo_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Desperate_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Desperate_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Desperate_3 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Desperate_4 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Desperate_5 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── DontUnderstand_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Enthusiastic_3 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Enthusiastic_4 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Enthusiastic_5 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Everything_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Everything_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Everything_3 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Everything_4 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Everything_6 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Excited_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Explain_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Explain_10 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Explain_11 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Explain_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Explain_3 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Explain_4 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Explain_5 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Explain_6 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Explain_7 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Explain_8 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Far_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Far_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Far_3 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Follow_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Give_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Give_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Give_3 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Give_4 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Give_5 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Give_6 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Great_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── HeSays_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── HeSays_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── HeSays_3 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Hey_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Hey_10 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Hey_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Hey_3 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Hey_4 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Hey_6 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Hey_7 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Hey_8 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Hey_9 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Hide_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Hot_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Hot_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── IDontKnow_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── IDontKnow_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── IDontKnow_3 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── IDontKnow_4 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── IDontKnow_5 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── IDontKnow_6 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Joy_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Kisses_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Look_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Look_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Maybe_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Me_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Me_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Me_4 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Me_7 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Me_8 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Mime_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Mime_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Next_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── No_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── No_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── No_3 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── No_4 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── No_5 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── No_6 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── No_7 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── No_8 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── No_9 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Nothing_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Nothing_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── OnTheEvening_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── OnTheEvening_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── OnTheEvening_3 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── OnTheEvening_4 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── OnTheEvening_5 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Please_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Please_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Please_3 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Reject_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Reject_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Reject_3 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Reject_4 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Reject_5 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Reject_6 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Salute_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Salute_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Salute_3 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── ShowFloor_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── ShowFloor_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── ShowFloor_3 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── ShowFloor_4 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── ShowFloor_5 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── ShowSky_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── ShowSky_10 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── ShowSky_11 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── ShowSky_12 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── ShowSky_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── ShowSky_3 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── ShowSky_4 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── ShowSky_5 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── ShowSky_6 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── ShowSky_7 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── ShowSky_8 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── ShowSky_9 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── ShowTablet_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── ShowTablet_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── ShowTablet_3 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Shy_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Stretch_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Stretch_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Surprised_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── TakePlace_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── TakePlace_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Take_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Thinking_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Thinking_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Thinking_3 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Thinking_4 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Thinking_5 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Thinking_6 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Thinking_7 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Thinking_8 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── This_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── This_10 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── This_11 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── This_12 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── This_13 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── This_14 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── This_15 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── This_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── This_3 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── This_4 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── This_5 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── This_6 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── This_7 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── This_8 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── This_9 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── WhatSThis_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── WhatSThis_10 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── WhatSThis_11 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── WhatSThis_12 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── WhatSThis_13 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── WhatSThis_14 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── WhatSThis_15 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── WhatSThis_16 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── WhatSThis_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── WhatSThis_3 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── WhatSThis_4 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── WhatSThis_5 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── WhatSThis_6 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── WhatSThis_7 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── WhatSThis_8 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── WhatSThis_9 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Whisper_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Wings_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Wings_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Wings_3 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Wings_4 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Wings_5 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Yes_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Yes_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Yes_3 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── YouKnowWhat_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── YouKnowWhat_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── YouKnowWhat_3 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── YouKnowWhat_4 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── YouKnowWhat_5 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── YouKnowWhat_6 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── You_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── You_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── You_3 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── You_4 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── You_5 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Yum_1 │ │ │ │ │ └── behavior.xar │ │ │ │ └── xalinfo │ │ │ ├── Reactions │ │ │ │ ├── EthernetOff_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── EthernetOn_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Heat_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Heat_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── LightShine_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── LightShine_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── LightShine_3 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── LightShine_4 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── SeeColor_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── SeeColor_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── SeeColor_3 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── SeeSomething_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── SeeSomething_3 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── SeeSomething_4 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── SeeSomething_5 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── SeeSomething_6 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── SeeSomething_7 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── SeeSomething_8 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── ShakeBody_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── ShakeBody_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── ShakeBody_3 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── TouchHead_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── TouchHead_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── TouchHead_3 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── TouchHead_4 │ │ │ │ │ └── behavior.xar │ │ │ │ └── xalinfo │ │ │ ├── Waiting │ │ │ │ ├── AirGuitar_1 │ │ │ │ │ ├── behavior.xar │ │ │ │ │ └── heavyMetal1.ogg │ │ │ │ ├── BackRubs_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Bandmaster_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Binoculars_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── BreathLoop_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── BreathLoop_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── BreathLoop_3 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── CallSomeone_1 │ │ │ │ │ ├── behavior.xar │ │ │ │ │ └── whistle3.ogg │ │ │ │ ├── Drink_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── DriveCar_1 │ │ │ │ │ ├── behavior.xar │ │ │ │ │ ├── borbo5.ogg │ │ │ │ │ ├── carCrash1.ogg │ │ │ │ │ ├── carStart.ogg │ │ │ │ │ └── yoohoo.ogg │ │ │ │ ├── Fitness_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Fitness_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Fitness_3 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── FunnyDancer_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── HappyBirthday_1 │ │ │ │ │ ├── behavior.xar │ │ │ │ │ └── happy_birthday_en.ogg │ │ │ │ ├── Helicopter_1 │ │ │ │ │ ├── behavior.xar │ │ │ │ │ └── helicopter_2.ogg │ │ │ │ ├── HideEyes_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── HideHands_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Innocent_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Knight_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── KnockEye_1 │ │ │ │ │ ├── behavior.xar │ │ │ │ │ ├── neonOff.ogg │ │ │ │ │ └── neonOn.ogg │ │ │ │ ├── KungFu_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── LookHand_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── LookHand_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── LoveYou_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Monster_1 │ │ │ │ │ ├── behavior.xar │ │ │ │ │ └── monsterGrowl1.ogg │ │ │ │ ├── MysticalPower_1 │ │ │ │ │ ├── behavior.xar │ │ │ │ │ └── heaven1.ogg │ │ │ │ ├── PlayHands_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── PlayHands_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── PlayHands_3 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Relaxation_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Relaxation_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Relaxation_3 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Relaxation_4 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Rest_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Robot_1 │ │ │ │ │ ├── behavior.xar │ │ │ │ │ └── r2d2.ogg │ │ │ │ ├── ScratchBack_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── ScratchBottom_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── ScratchEye_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── ScratchHand_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── ScratchHead_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── ScratchLeg_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── ScratchTorso_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── ShowMuscles_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── ShowMuscles_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── ShowMuscles_3 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── ShowMuscles_4 │ │ │ │ │ ├── angry6.ogg │ │ │ │ │ └── behavior.xar │ │ │ │ ├── ShowMuscles_5 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── ShowSky_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── ShowSky_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── SpaceShuttle_1 │ │ │ │ │ ├── behavior.xar │ │ │ │ │ ├── rocket1.ogg │ │ │ │ │ └── youhou17.ogg │ │ │ │ ├── Stretch_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Stretch_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── TakePicture_1 │ │ │ │ │ ├── behavior.xar │ │ │ │ │ └── camera1.ogg │ │ │ │ ├── Taxi_1 │ │ │ │ │ ├── behavior.xar │ │ │ │ │ └── hey9.ogg │ │ │ │ ├── Think_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Think_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Think_3 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Think_4 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Waddle_1 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── Waddle_2 │ │ │ │ │ └── behavior.xar │ │ │ │ ├── WakeUp_1 │ │ │ │ │ ├── behavior.xar │ │ │ │ │ ├── contentement3.ogg │ │ │ │ │ ├── yawn2.ogg │ │ │ │ │ └── yawn3.ogg │ │ │ │ ├── Zombie_1 │ │ │ │ │ └── behavior.xar │ │ │ │ └── xalinfo │ │ │ └── xalinfo │ │ ├── animations.pml │ │ ├── icon.png │ │ ├── manifest.xml │ │ └── xalinfo │ ├── applauncher │ │ ├── .metadata │ │ ├── adb │ │ ├── applaunchertablet.py │ │ └── html │ │ │ ├── jp.softbank.rb.rald.apk │ │ │ └── starting.html │ ├── boot-config │ │ ├── animations │ │ │ ├── bipGentle │ │ │ │ └── behavior.xar │ │ │ ├── endReco │ │ │ │ └── behavior.xar │ │ │ ├── finishWizard │ │ │ │ └── behavior.xar │ │ │ ├── hello │ │ │ │ └── behavior.xar │ │ │ ├── inviteTablet │ │ │ │ └── behavior.xar │ │ │ ├── networkLoop │ │ │ │ └── behavior.xar │ │ │ ├── networkOut │ │ │ │ └── behavior.xar │ │ │ ├── nok │ │ │ │ └── behavior.xar │ │ │ ├── ok │ │ │ │ └── behavior.xar │ │ │ ├── onNextPage │ │ │ │ └── behavior.xar │ │ │ ├── onPlugged │ │ │ │ └── behavior.xar │ │ │ ├── onPrevPage │ │ │ │ └── behavior.xar │ │ │ ├── onUnPlugged │ │ │ │ └── behavior.xar │ │ │ ├── poseInit │ │ │ │ └── behavior.xar │ │ │ ├── poseInitUp │ │ │ │ └── behavior.xar │ │ │ ├── shutdown │ │ │ │ └── behavior.xar │ │ │ ├── success │ │ │ │ └── behavior.xar │ │ │ ├── turnTabletOn_end │ │ │ │ └── behavior.xar │ │ │ ├── turnTabletOn_start │ │ │ │ └── behavior.xar │ │ │ ├── updateFailed │ │ │ │ └── behavior.xar │ │ │ ├── updateLoop │ │ │ │ └── behavior.xar │ │ │ ├── updateOut │ │ │ │ └── behavior.xar │ │ │ ├── warning │ │ │ │ └── behavior.xar │ │ │ └── warningValidate │ │ │ │ └── behavior.xar │ │ ├── behavior.xar │ │ ├── bin │ │ │ └── aapt │ │ ├── html │ │ │ ├── JapaneseKeyboard.apk │ │ │ ├── JapaneseKeyboard_settings_hacked.apk │ │ │ ├── LatinIME_settings_hacked.apk │ │ │ ├── Settings_keyboard_hacked.apk │ │ │ ├── bootconfig.apk │ │ │ ├── favicon.ico │ │ │ ├── img │ │ │ │ └── loading.gif │ │ │ └── preloading_dialog.html │ │ ├── icon.png │ │ ├── manifest.xml │ │ ├── services │ │ │ ├── albootconfig.py │ │ │ ├── alqrcodewificonfigurator.py │ │ │ └── simple_encryption.py │ │ └── sounds │ │ │ ├── creme.ogg │ │ │ ├── ding.ogg │ │ │ ├── eapar.ogg │ │ │ ├── euyia.ogg │ │ │ ├── missed.ogg │ │ │ ├── ok_02.ogg │ │ │ ├── ok_03.ogg │ │ │ ├── ok_04.ogg │ │ │ ├── prev_next.ogg │ │ │ ├── tablet_loaded_01.ogg │ │ │ ├── tablet_loaded_02.ogg │ │ │ ├── tablet_loading_01.ogg │ │ │ ├── turnoff.ogg │ │ │ ├── update_out.ogg │ │ │ ├── wait_music_network.ogg │ │ │ └── wait_music_update.ogg │ ├── dialog_adjust_volume │ │ ├── dlg_adjust_volume │ │ │ ├── dlg_adjust_volume.dlg │ │ │ ├── dlg_adjust_volume_enu.top │ │ │ ├── dlg_adjust_volume_frf.top │ │ │ └── dlg_adjust_volume_jpj.top │ │ ├── html │ │ │ ├── css │ │ │ │ └── style.css │ │ │ ├── index.html │ │ │ └── js │ │ │ │ ├── jquery-1.11.0.min.js │ │ │ │ ├── main.js │ │ │ │ └── robotutils.js │ │ ├── icon.png │ │ ├── manifest.xml │ │ ├── my_apps_topic │ │ │ ├── my_apps_topic.dlg │ │ │ ├── my_apps_topic_enu.top │ │ │ ├── my_apps_topic_frf.top │ │ │ └── my_apps_topic_jpj.top │ │ ├── scripts │ │ │ ├── alvolumeslider.py │ │ │ ├── show.py │ │ │ ├── stk │ │ │ │ ├── __init__.py │ │ │ │ ├── events.py │ │ │ │ ├── logging.py │ │ │ │ ├── runner.py │ │ │ │ └── services.py │ │ │ └── topicdisplay.py │ │ └── translations │ │ │ ├── translation_en_US.qm │ │ │ ├── translation_fr_FR.qm │ │ │ └── translation_ja_JP.qm │ ├── dialog_applauncher │ │ ├── dlg_applauncher │ │ │ ├── dlg_applauncher.dlg │ │ │ ├── dlg_applauncher_arw.top │ │ │ ├── dlg_applauncher_czc.top │ │ │ ├── dlg_applauncher_dad.top │ │ │ ├── dlg_applauncher_dun.top │ │ │ ├── dlg_applauncher_enu.top │ │ │ ├── dlg_applauncher_fif.top │ │ │ ├── dlg_applauncher_frf.top │ │ │ ├── dlg_applauncher_ged.top │ │ │ ├── dlg_applauncher_grg.top │ │ │ ├── dlg_applauncher_iti.top │ │ │ ├── dlg_applauncher_jpj.top │ │ │ ├── dlg_applauncher_kok.top │ │ │ ├── dlg_applauncher_mnc.top │ │ │ ├── dlg_applauncher_mnt.top │ │ │ ├── dlg_applauncher_non.top │ │ │ ├── dlg_applauncher_plp.top │ │ │ ├── dlg_applauncher_ptb.top │ │ │ ├── dlg_applauncher_ptp.top │ │ │ ├── dlg_applauncher_rur.top │ │ │ ├── dlg_applauncher_spe.top │ │ │ ├── dlg_applauncher_sws.top │ │ │ └── dlg_applauncher_trt.top │ │ ├── dlg_suggest_app │ │ │ ├── dlg_suggest_app.dlg │ │ │ ├── dlg_suggest_app_enu.top │ │ │ └── dlg_suggest_app_frf.top │ │ ├── icon.png │ │ ├── manifest.xml │ │ └── translations │ │ │ ├── translation_ar_SA.qm │ │ │ ├── translation_cs_CZ.qm │ │ │ ├── translation_da_DK.qm │ │ │ ├── translation_de_DE.qm │ │ │ ├── translation_el_GR.qm │ │ │ ├── translation_en_US.qm │ │ │ ├── translation_es_ES.qm │ │ │ ├── translation_fi_FI.qm │ │ │ ├── translation_fr_FR.qm │ │ │ ├── translation_it_IT.qm │ │ │ ├── translation_ja_JP.qm │ │ │ ├── translation_ko_KR.qm │ │ │ ├── translation_nl_NL.qm │ │ │ ├── translation_nn_NO.qm │ │ │ ├── translation_pl_PL.qm │ │ │ ├── translation_pt_BR.qm │ │ │ ├── translation_pt_PT.qm │ │ │ ├── translation_ru_RU.qm │ │ │ ├── translation_sv_SE.qm │ │ │ ├── translation_zh_CN.qm │ │ │ └── translation_zh_TW.qm │ ├── dialog_battery_capacity │ │ ├── dlg_battery_capacity │ │ │ ├── dlg_battery_capacity.dlg │ │ │ ├── dlg_battery_capacity_enu.top │ │ │ ├── dlg_battery_capacity_frf.top │ │ │ ├── dlg_battery_capacity_ged.top │ │ │ ├── dlg_battery_capacity_iti.top │ │ │ ├── dlg_battery_capacity_jpj.top │ │ │ └── dlg_battery_capacity_spe.top │ │ ├── icon.png │ │ └── manifest.xml │ ├── dialog_battery_level │ │ ├── dlg_battery_level │ │ │ ├── dlg_battery_level.dlg │ │ │ ├── dlg_battery_level_enu.top │ │ │ ├── dlg_battery_level_frf.top │ │ │ ├── dlg_battery_level_ged.top │ │ │ ├── dlg_battery_level_iti.top │ │ │ ├── dlg_battery_level_jpj.top │ │ │ └── dlg_battery_level_spe.top │ │ ├── html │ │ │ ├── css │ │ │ │ └── style.css │ │ │ ├── index.html │ │ │ └── js │ │ │ │ ├── jquery-1.11.0.min.js │ │ │ │ ├── main.js │ │ │ │ └── robotutils.js │ │ ├── icon.png │ │ ├── manifest.xml │ │ ├── scripts │ │ │ ├── batterydisplay.py │ │ │ ├── stk │ │ │ │ ├── __init__.py │ │ │ │ ├── events.py │ │ │ │ ├── logging.py │ │ │ │ ├── runner.py │ │ │ │ └── services.py │ │ │ └── topicdisplay.py │ │ └── translations │ │ │ ├── translation_de_DE.qm │ │ │ ├── translation_en_US.qm │ │ │ ├── translation_es_ES.qm │ │ │ ├── translation_fr_FR.qm │ │ │ ├── translation_it_IT.qm │ │ │ └── translation_ja_JP.qm │ ├── dialog_bleep_sounds │ │ ├── dlg_bleep_sounds │ │ │ ├── dlg_bleep_sounds.dlg │ │ │ ├── dlg_bleep_sounds_enu.top │ │ │ └── dlg_bleep_sounds_frf.top │ │ ├── icon.png │ │ └── manifest.xml │ ├── dialog_can_you_repeat │ │ ├── dlg_can_you_repeat │ │ │ ├── dlg_can_you_repeat.dlg │ │ │ ├── dlg_can_you_repeat_enu.top │ │ │ ├── dlg_can_you_repeat_frf.top │ │ │ ├── dlg_can_you_repeat_ged.top │ │ │ ├── dlg_can_you_repeat_iti.top │ │ │ ├── dlg_can_you_repeat_jpj.top │ │ │ └── dlg_can_you_repeat_spe.top │ │ ├── icon.png │ │ ├── manifest.xml │ │ └── translations │ │ │ ├── translation_de_DE.qm │ │ │ ├── translation_en_US.qm │ │ │ ├── translation_es_ES.qm │ │ │ ├── translation_fr_FR.qm │ │ │ ├── translation_it_IT.qm │ │ │ └── translation_ja_JP.qm │ ├── dialog_clock │ │ ├── dlg_clock │ │ │ ├── dlg_clock.dlg │ │ │ ├── dlg_clock_enu.top │ │ │ ├── dlg_clock_frf.top │ │ │ ├── dlg_clock_ged.top │ │ │ ├── dlg_clock_iti.top │ │ │ ├── dlg_clock_jpj.top │ │ │ └── dlg_clock_spe.top │ │ ├── icon.png │ │ └── manifest.xml │ ├── dialog_engines │ │ ├── bhv_rest │ │ │ └── behavior.xar │ │ ├── bhv_wake_up │ │ │ └── behavior.xar │ │ ├── dlg_engines │ │ │ ├── dlg_engines.dlg │ │ │ ├── dlg_engines_enu.top │ │ │ ├── dlg_engines_frf.top │ │ │ ├── dlg_engines_ged.top │ │ │ ├── dlg_engines_iti.top │ │ │ └── dlg_engines_spe.top │ │ ├── icon.png │ │ ├── manifest.xml │ │ └── translations │ │ │ ├── translation_de_DE.qm │ │ │ ├── translation_en_US.qm │ │ │ ├── translation_es_ES.qm │ │ │ ├── translation_fr_FR.qm │ │ │ └── translation_it_IT.qm │ ├── dialog_goodbye │ │ ├── dlg_goodbye │ │ │ ├── dlg_goodbye.dlg │ │ │ ├── dlg_goodbye_enu.top │ │ │ ├── dlg_goodbye_frf.top │ │ │ ├── dlg_goodbye_ged.top │ │ │ ├── dlg_goodbye_iti.top │ │ │ ├── dlg_goodbye_jpj.top │ │ │ └── dlg_goodbye_spe.top │ │ ├── goToSleepAld.py │ │ ├── html │ │ │ ├── sleep_mode_tablet_enu.jpg │ │ │ ├── sleep_mode_tablet_frf.jpg │ │ │ └── sleep_mode_tablet_jpj.jpg │ │ ├── icon.png │ │ ├── manifest.xml │ │ └── translations │ │ │ ├── translation_de_DE.qm │ │ │ ├── translation_en_US.qm │ │ │ ├── translation_es_ES.qm │ │ │ ├── translation_fr_FR.qm │ │ │ ├── translation_it_IT.qm │ │ │ └── translation_ja_JP.qm │ ├── dialog_hello │ │ ├── dlg_hello │ │ │ ├── dlg_hello.dlg │ │ │ ├── dlg_hello_enu.top │ │ │ ├── dlg_hello_frf.top │ │ │ ├── dlg_hello_ged.top │ │ │ ├── dlg_hello_iti.top │ │ │ ├── dlg_hello_jpj.top │ │ │ └── dlg_hello_spe.top │ │ ├── icon.png │ │ ├── manifest.xml │ │ └── translations │ │ │ ├── translation_de_DE.qm │ │ │ ├── translation_en_US.qm │ │ │ ├── translation_es_ES.qm │ │ │ ├── translation_fr_FR.qm │ │ │ ├── translation_it_IT.qm │ │ │ └── translation_ja_JP.qm │ ├── dialog_help │ │ ├── dlg_help │ │ │ ├── dlg_help.dlg │ │ │ ├── dlg_help_enu.top │ │ │ ├── dlg_help_frf.top │ │ │ ├── dlg_help_ged.top │ │ │ ├── dlg_help_iti.top │ │ │ ├── dlg_help_jpj.top │ │ │ └── dlg_help_spe.top │ │ ├── icon.png │ │ ├── manifest.xml │ │ └── translations │ │ │ ├── translation_de_DE.qm │ │ │ ├── translation_en_US.qm │ │ │ ├── translation_es_ES.qm │ │ │ ├── translation_fr_FR.qm │ │ │ ├── translation_it_IT.qm │ │ │ └── translation_ja_JP.qm │ ├── dialog_how_are_you │ │ ├── dlg_how_are_you │ │ │ ├── dlg_how_are_you.dlg │ │ │ ├── dlg_how_are_you_enu.top │ │ │ ├── dlg_how_are_you_frf.top │ │ │ ├── dlg_how_are_you_ged.top │ │ │ ├── dlg_how_are_you_iti.top │ │ │ ├── dlg_how_are_you_jpj.top │ │ │ └── dlg_how_are_you_spe.top │ │ ├── icon.png │ │ ├── manifest.xml │ │ ├── translations │ │ │ ├── translation_de_DE.qm │ │ │ ├── translation_en_US.qm │ │ │ ├── translation_es_ES.qm │ │ │ ├── translation_fr_FR.qm │ │ │ ├── translation_it_IT.qm │ │ │ └── translation_ja_JP.qm │ │ └── user_mood.py │ ├── dialog_impossible_moves │ │ ├── animations │ │ │ ├── Backflip │ │ │ │ └── behavior.xar │ │ │ ├── CrossArms │ │ │ │ └── behavior.xar │ │ │ ├── TurnHead360 │ │ │ │ └── behavior.xar │ │ │ └── Wave01 │ │ │ │ └── behavior.xar │ │ ├── dlg_impossible_moves │ │ │ ├── dlg_impossible_moves.dlg │ │ │ ├── dlg_impossible_moves_enu.top │ │ │ ├── dlg_impossible_moves_frf.top │ │ │ ├── dlg_impossible_moves_ged.top │ │ │ ├── dlg_impossible_moves_iti.top │ │ │ ├── dlg_impossible_moves_jpj.top │ │ │ └── dlg_impossible_moves_spe.top │ │ ├── icon.png │ │ ├── manifest.xml │ │ └── translations │ │ │ ├── translation_de_DE.qm │ │ │ ├── translation_en_US.qm │ │ │ ├── translation_es_ES.qm │ │ │ ├── translation_fr_FR.qm │ │ │ ├── translation_it_IT.qm │ │ │ └── translation_ja_JP.qm │ ├── dialog_internet_connection │ │ ├── bhr_IP_adress │ │ │ └── behavior.xar │ │ ├── bhr_network_status │ │ │ └── behavior.xar │ │ ├── dlg_internet_connection │ │ │ ├── dlg_internet_connection.dlg │ │ │ ├── dlg_internet_connection_enu.top │ │ │ ├── dlg_internet_connection_frf.top │ │ │ ├── dlg_internet_connection_ged.top │ │ │ ├── dlg_internet_connection_iti.top │ │ │ ├── dlg_internet_connection_jpj.top │ │ │ └── dlg_internet_connection_spe.top │ │ ├── icon.png │ │ ├── manifest.xml │ │ └── translations │ │ │ ├── translation_de_DE.qm │ │ │ ├── translation_en_US.qm │ │ │ ├── translation_es_ES.qm │ │ │ ├── translation_fr_FR.qm │ │ │ ├── translation_it_IT.qm │ │ │ └── translation_ja_JP.qm │ ├── dialog_lexicon │ │ ├── .metadata │ │ ├── ALSetDateTime.py │ │ ├── behavior_1 │ │ │ └── behavior.xar │ │ ├── icon.png │ │ ├── lexicon.dlg │ │ ├── lexicon_enu.top │ │ ├── lexicon_frf.top │ │ ├── lexicon_ged.top │ │ ├── lexicon_geography.dlg │ │ ├── lexicon_geography_enu.top │ │ ├── lexicon_geography_frf.top │ │ ├── lexicon_iti.top │ │ ├── lexicon_jpj.top │ │ ├── lexicon_names.dlg │ │ ├── lexicon_names_enu.top │ │ ├── lexicon_names_frf.top │ │ ├── lexicon_spe.top │ │ ├── lexicon_time.dlg │ │ ├── lexicon_time_enu.top │ │ ├── lexicon_time_frf.top │ │ ├── lexicon_time_jpj.top │ │ ├── manifest.xml │ │ ├── resetVariable.py │ │ ├── skin_B2B │ │ │ ├── skin_B2B.dlg │ │ │ ├── skin_B2B_enu.top │ │ │ ├── skin_B2B_frf.top │ │ │ └── skin_B2B_jpj.top │ │ ├── skin_B2C │ │ │ ├── skin_B2C.dlg │ │ │ └── skin_B2C_jpj.top │ │ ├── skin_tmp_tweak │ │ │ ├── skin_tmp_tweak.dlg │ │ │ ├── skin_tmp_tweak_enu.top │ │ │ ├── skin_tmp_tweak_frf.top │ │ │ └── skin_tmp_tweak_jpj.top │ │ └── translations │ │ │ ├── translation_de_DE.qm │ │ │ ├── translation_en_US.qm │ │ │ ├── translation_es_ES.qm │ │ │ ├── translation_fr_FR.qm │ │ │ ├── translation_it_IT.qm │ │ │ └── translation_ja_JP.qm │ ├── dialog_manage_events │ │ ├── dlg_manage_events │ │ │ ├── dlg_manage_events.dlg │ │ │ ├── dlg_manage_events_enu.top │ │ │ ├── dlg_manage_events_frf.top │ │ │ ├── dlg_manage_events_ged.top │ │ │ ├── dlg_manage_events_iti.top │ │ │ ├── dlg_manage_events_jpj.top │ │ │ └── dlg_manage_events_spe.top │ │ ├── icon.png │ │ ├── manifest.xml │ │ └── translations │ │ │ ├── translation_de_DE.qm │ │ │ ├── translation_en_US.qm │ │ │ ├── translation_es_ES.qm │ │ │ ├── translation_fr_FR.qm │ │ │ ├── translation_it_IT.qm │ │ │ └── translation_ja_JP.qm │ ├── dialog_move_arms │ │ ├── animations │ │ │ ├── StretchBothArms │ │ │ │ └── behavior.xar │ │ │ ├── StretchLArm │ │ │ │ └── behavior.xar │ │ │ ├── StretchRArm │ │ │ │ └── behavior.xar │ │ │ ├── UpBothArms │ │ │ │ └── behavior.xar │ │ │ ├── UpLArm │ │ │ │ └── behavior.xar │ │ │ └── UpRArm │ │ │ │ └── behavior.xar │ │ ├── dlg_move_arms │ │ │ ├── dlg_move_arms.dlg │ │ │ ├── dlg_move_arms_enu.top │ │ │ ├── dlg_move_arms_frf.top │ │ │ ├── dlg_move_arms_ged.top │ │ │ ├── dlg_move_arms_iti.top │ │ │ ├── dlg_move_arms_jpj.top │ │ │ └── dlg_move_arms_spe.top │ │ ├── manifest.xml │ │ └── translations │ │ │ ├── translation_de_DE.qm │ │ │ ├── translation_en_US.qm │ │ │ ├── translation_es_ES.qm │ │ │ ├── translation_fr_FR.qm │ │ │ ├── translation_it_IT.qm │ │ │ └── translation_ja_JP.qm │ ├── dialog_move_hands │ │ ├── animations │ │ │ ├── CloseBothHands │ │ │ │ └── behavior.xar │ │ │ ├── CloseLHand │ │ │ │ └── behavior.xar │ │ │ ├── CloseRHand │ │ │ │ └── behavior.xar │ │ │ ├── HandsBack │ │ │ │ └── behavior.xar │ │ │ ├── HandsOnEyes │ │ │ │ └── behavior.xar │ │ │ ├── OpenBothHands │ │ │ │ └── behavior.xar │ │ │ ├── OpenLHand │ │ │ │ └── behavior.xar │ │ │ ├── OpenRHand │ │ │ │ └── behavior.xar │ │ │ ├── UpBothArms │ │ │ │ └── behavior.xar │ │ │ └── Wave01 │ │ │ │ └── behavior.xar │ │ ├── dlg_move_hands │ │ │ ├── dlg_move_hands.dlg │ │ │ ├── dlg_move_hands_enu.top │ │ │ ├── dlg_move_hands_frf.top │ │ │ ├── dlg_move_hands_ged.top │ │ │ ├── dlg_move_hands_iti.top │ │ │ ├── dlg_move_hands_jpj.top │ │ │ └── dlg_move_hands_spe.top │ │ ├── icon.png │ │ └── manifest.xml │ ├── dialog_move_head │ │ ├── animations │ │ │ ├── LookDown │ │ │ │ └── behavior.xar │ │ │ ├── LookLeft │ │ │ │ └── behavior.xar │ │ │ ├── LookRight │ │ │ │ └── behavior.xar │ │ │ ├── LookUp │ │ │ │ └── behavior.xar │ │ │ └── TurnHead360 │ │ │ │ └── behavior.xar │ │ ├── dlg_move_head │ │ │ ├── dlg_move_head.dlg │ │ │ ├── dlg_move_head_enu.top │ │ │ ├── dlg_move_head_frf.top │ │ │ ├── dlg_move_head_ged.top │ │ │ ├── dlg_move_head_iti.top │ │ │ ├── dlg_move_head_jpj.top │ │ │ └── dlg_move_head_spe.top │ │ ├── icon.png │ │ ├── manifest.xml │ │ └── translations │ │ │ ├── translation_en_US.qm │ │ │ ├── translation_es_ES.qm │ │ │ ├── translation_fr_FR.qm │ │ │ ├── translation_it_IT.qm │ │ │ └── translation_ja_JP.qm │ ├── dialog_posture │ │ ├── bhv_crouch │ │ │ └── behavior.xar │ │ ├── bhv_lie_down_back │ │ │ └── behavior.xar │ │ ├── bhv_lie_down_belly │ │ │ └── behavior.xar │ │ ├── bhv_sit_down │ │ │ └── behavior.xar │ │ ├── bhv_stand_up │ │ │ └── behavior.xar │ │ ├── dlg_posture_nao │ │ │ ├── dlg_posture_nao.dlg │ │ │ ├── dlg_posture_nao_enu.top │ │ │ ├── dlg_posture_nao_frf.top │ │ │ └── dlg_posture_nao_jpj.top │ │ ├── dlg_posture_pepper │ │ │ ├── dlg_posture_pepper.dlg │ │ │ ├── dlg_posture_pepper_enu.top │ │ │ ├── dlg_posture_pepper_frf.top │ │ │ └── dlg_posture_pepper_jpj.top │ │ ├── icon.png │ │ └── manifest.xml │ ├── dialog_reflex │ │ ├── icon.png │ │ ├── manifest.xml │ │ ├── reflex │ │ │ ├── reflex.dlg │ │ │ ├── reflex_enu.top │ │ │ ├── reflex_frf.top │ │ │ └── reflex_jpj.top │ │ ├── test │ │ │ ├── behavior.xar │ │ │ └── kpilogsend │ │ │ │ └── behavior.xar │ │ └── translations │ │ │ ├── translation_en_US.qm │ │ │ ├── translation_fr_FR.qm │ │ │ └── translation_ja_JP.qm │ ├── dialog_reflex_engaged │ │ ├── dlg_reflex_engaged │ │ │ ├── dlg_reflex_engaged.dlg │ │ │ ├── dlg_reflex_engaged_enu.top │ │ │ ├── dlg_reflex_engaged_frf.top │ │ │ └── dlg_reflex_engaged_jpj.top │ │ ├── icon.png │ │ ├── manifest.xml │ │ └── translations │ │ │ ├── translation_en_US.qm │ │ │ ├── translation_fr_FR.qm │ │ │ └── translation_ja_JP.qm │ ├── dialog_robot_characteristics │ │ ├── dlg_character │ │ │ ├── dlg_character.dlg │ │ │ ├── dlg_character_enu.top │ │ │ ├── dlg_character_frf.top │ │ │ ├── dlg_character_ged.top │ │ │ ├── dlg_character_iti.top │ │ │ └── dlg_character_spe.top │ │ ├── dlg_humanoid │ │ │ ├── dlg_humanoid.dlg │ │ │ ├── dlg_humanoid_enu.top │ │ │ ├── dlg_humanoid_frf.top │ │ │ ├── dlg_humanoid_ged.top │ │ │ ├── dlg_humanoid_iti.top │ │ │ └── dlg_humanoid_spe.top │ │ ├── dlg_interaction │ │ │ ├── dlg_interaction.dlg │ │ │ ├── dlg_interaction_enu.top │ │ │ ├── dlg_interaction_frf.top │ │ │ ├── dlg_interaction_ged.top │ │ │ ├── dlg_interaction_iti.top │ │ │ └── dlg_interaction_spe.top │ │ ├── dlg_personal_info │ │ │ ├── dlg_personal_info.dlg │ │ │ ├── dlg_personal_info_enu.top │ │ │ ├── dlg_personal_info_frf.top │ │ │ ├── dlg_personal_info_ged.top │ │ │ ├── dlg_personal_info_iti.top │ │ │ ├── dlg_personal_info_jpj.top │ │ │ └── dlg_personal_info_spe.top │ │ ├── icon.png │ │ ├── manifest.xml │ │ └── translations │ │ │ ├── translation_de_DE.qm │ │ │ ├── translation_en_US.qm │ │ │ ├── translation_es_ES.qm │ │ │ ├── translation_fr_FR.qm │ │ │ ├── translation_it_IT.qm │ │ │ └── translation_ja_JP.qm │ ├── dialog_robot_origins │ │ ├── dlg_robot_origins │ │ │ ├── dlg_robot_origins.dlg │ │ │ ├── dlg_robot_origins_enu.top │ │ │ ├── dlg_robot_origins_frf.top │ │ │ ├── dlg_robot_origins_ged.top │ │ │ ├── dlg_robot_origins_iti.top │ │ │ └── dlg_robot_origins_spe.top │ │ ├── icon.png │ │ ├── manifest.xml │ │ └── translations │ │ │ ├── translation_de_DE.qm │ │ │ ├── translation_en_US.qm │ │ │ ├── translation_es_ES.qm │ │ │ ├── translation_fr_FR.qm │ │ │ └── translation_it_IT.qm │ ├── dialog_robot_relationships │ │ ├── dlg_robot_relationships │ │ │ ├── dlg_robot_relationships.dlg │ │ │ ├── dlg_robot_relationships_enu.top │ │ │ ├── dlg_robot_relationships_frf.top │ │ │ ├── dlg_robot_relationships_ged.top │ │ │ ├── dlg_robot_relationships_iti.top │ │ │ └── dlg_robot_relationships_spe.top │ │ ├── icon.png │ │ ├── manifest.xml │ │ └── translations │ │ │ ├── translation_de_DE.qm │ │ │ ├── translation_en_US.qm │ │ │ ├── translation_es_ES.qm │ │ │ ├── translation_fr_FR.qm │ │ │ └── translation_it_IT.qm │ ├── dialog_robots │ │ ├── dlg_asimov │ │ │ ├── dlg_asimov.dlg │ │ │ ├── dlg_asimov_enu.top │ │ │ ├── dlg_asimov_frf.top │ │ │ ├── dlg_asimov_ged.top │ │ │ ├── dlg_asimov_iti.top │ │ │ └── dlg_asimov_spe.top │ │ ├── dlg_famous_robots │ │ │ ├── dlg_famous_robots.dlg │ │ │ ├── dlg_famous_robots_enu.top │ │ │ ├── dlg_famous_robots_frf.top │ │ │ ├── dlg_famous_robots_ged.top │ │ │ ├── dlg_famous_robots_iti.top │ │ │ └── dlg_famous_robots_spe.top │ │ ├── dlg_robots │ │ │ ├── dlg_robots.dlg │ │ │ ├── dlg_robots_enu.top │ │ │ ├── dlg_robots_frf.top │ │ │ ├── dlg_robots_ged.top │ │ │ ├── dlg_robots_iti.top │ │ │ └── dlg_robots_spe.top │ │ ├── icon.png │ │ ├── manifest.xml │ │ ├── manifest.xml~ │ │ └── translations │ │ │ ├── translation_de_DE.qm │ │ │ ├── translation_en_US.qm │ │ │ ├── translation_es_ES.qm │ │ │ ├── translation_fr_FR.qm │ │ │ └── translation_it_IT.qm │ ├── dialog_say_something_else │ │ ├── bhr_set_pushmode │ │ │ └── behavior.xar │ │ ├── dlg_say_something_else │ │ │ ├── dlg_say_something_else.dlg │ │ │ ├── dlg_say_something_else_enu.top │ │ │ ├── dlg_say_something_else_frf.top │ │ │ └── dlg_say_something_else_jpj.top │ │ ├── icon.png │ │ └── manifest.xml │ ├── dialog_set_offset │ │ ├── dlg_set_offset │ │ │ ├── dlg_set_offset.dlg │ │ │ ├── dlg_set_offset_enu.top │ │ │ └── dlg_set_offset_frf.top │ │ ├── icon.png │ │ └── manifest.xml │ ├── dialog_shutdown │ │ ├── bhr_reboot │ │ │ └── behavior.xar │ │ ├── bhr_shutdown │ │ │ └── behavior.xar │ │ ├── dlg_shutdown │ │ │ ├── dlg_shutdown.dlg │ │ │ ├── dlg_shutdown_enu.top │ │ │ ├── dlg_shutdown_frf.top │ │ │ ├── dlg_shutdown_ged.top │ │ │ ├── dlg_shutdown_iti.top │ │ │ ├── dlg_shutdown_jpj.top │ │ │ └── dlg_shutdown_spe.top │ │ ├── html │ │ │ ├── css │ │ │ │ └── style.css │ │ │ ├── indexen.html │ │ │ ├── indexfr.html │ │ │ ├── indexjp.html │ │ │ └── js │ │ │ │ ├── jquery-1.11.0.min.js │ │ │ │ ├── main.js │ │ │ │ ├── main.js~ │ │ │ │ └── robotutils.js │ │ ├── icon.png │ │ ├── manifest.xml │ │ └── translations │ │ │ ├── translation_de_DE.qm │ │ │ ├── translation_en_US.qm │ │ │ ├── translation_es_ES.qm │ │ │ ├── translation_fr_FR.qm │ │ │ ├── translation_it_IT.qm │ │ │ └── translation_ja_JP.qm │ ├── dialog_stop_talking │ │ ├── dlg_stop_talking │ │ │ ├── dlg_stop_talking.dlg │ │ │ ├── dlg_stop_talking_enu.top │ │ │ ├── dlg_stop_talking_frf.top │ │ │ ├── dlg_stop_talking_ged.top │ │ │ ├── dlg_stop_talking_iti.top │ │ │ ├── dlg_stop_talking_jpj.top │ │ │ └── dlg_stop_talking_spe.top │ │ ├── icon.png │ │ ├── manifest.xml │ │ └── translations │ │ │ ├── translation_de_DE.qm │ │ │ ├── translation_en_US.qm │ │ │ ├── translation_es_ES.qm │ │ │ ├── translation_fr_FR.qm │ │ │ ├── translation_it_IT.qm │ │ │ └── translation_ja_JP.qm │ ├── dialog_store │ │ ├── dlg_ade │ │ │ ├── dlg_ade.dlg │ │ │ ├── dlg_ade_enu.top │ │ │ ├── dlg_ade_frf.top │ │ │ └── dlg_ade_jpj.top │ │ ├── icon.png │ │ ├── manifest.xml │ │ └── show_tablet │ │ │ ├── Show_tablet_1 │ │ │ ├── Show_tablet_1.pml │ │ │ ├── behavior.xar │ │ │ └── manifest.xml │ │ │ ├── Show_tablet_2 │ │ │ ├── Show_tablet_2.pml │ │ │ ├── behavior.xar │ │ │ └── manifest.xml │ │ │ ├── Show_tablet_3 │ │ │ ├── Show_tablet_3.pml │ │ │ ├── behavior.xar │ │ │ └── manifest.xml │ │ │ ├── Show_tablet_4 │ │ │ ├── Show_tablet_4.pml │ │ │ ├── behavior.xar │ │ │ └── manifest.xml │ │ │ └── Show_tablet_5 │ │ │ ├── Show_tablet_5.pml │ │ │ ├── behavior.xar │ │ │ └── manifest.xml │ ├── dialog_switch_language │ │ ├── bhr_check_language_packs │ │ │ └── behavior.xar │ │ ├── bhr_switch_language │ │ │ └── behavior.xar │ │ ├── dlg_switch_language │ │ │ ├── dlg_switch_language.dlg │ │ │ ├── dlg_switch_language_enu.top │ │ │ ├── dlg_switch_language_frf.top │ │ │ └── dlg_switch_language_jpj.top │ │ ├── icon.png │ │ └── manifest.xml │ ├── dialog_thank_you │ │ ├── dlg_thank_you │ │ │ ├── dlg_thank_you.dlg │ │ │ ├── dlg_thank_you_enu.top │ │ │ ├── dlg_thank_you_frf.top │ │ │ ├── dlg_thank_you_ged.top │ │ │ ├── dlg_thank_you_iti.top │ │ │ ├── dlg_thank_you_jpj.top │ │ │ └── dlg_thank_you_spe.top │ │ ├── icon.png │ │ └── manifest.xml │ ├── dialog_touch │ │ ├── SFX_Fart2.ogg │ │ ├── animations │ │ │ └── head_touched │ │ │ │ └── behavior.xar │ │ ├── dlg_touch_head │ │ │ ├── dlg_touch_head.dlg │ │ │ ├── dlg_touch_head_enu.top │ │ │ ├── dlg_touch_head_frf.top │ │ │ ├── dlg_touch_head_ged.top │ │ │ ├── dlg_touch_head_iti.top │ │ │ ├── dlg_touch_head_jpj.top │ │ │ └── dlg_touch_head_spe.top │ │ ├── headster_egg │ │ │ └── behavior.xar │ │ ├── icon.png │ │ ├── manifest.xml │ │ └── translations │ │ │ ├── translation_de_DE.qm │ │ │ ├── translation_en_US.qm │ │ │ ├── translation_es_ES.qm │ │ │ ├── translation_fr_FR.qm │ │ │ ├── translation_it_IT.qm │ │ │ └── translation_ja_JP.qm │ ├── dialog_what_can_you_do │ │ ├── dlg_what_can_you_do │ │ │ ├── dlg_what_can_you_do.dlg │ │ │ ├── dlg_what_can_you_do_enu.top │ │ │ ├── dlg_what_can_you_do_frf.top │ │ │ ├── dlg_what_can_you_do_ged.top │ │ │ ├── dlg_what_can_you_do_iti.top │ │ │ ├── dlg_what_can_you_do_jpj.top │ │ │ └── dlg_what_can_you_do_spe.top │ │ ├── icon.png │ │ ├── manifest.xml │ │ ├── show_tablet │ │ │ ├── Show_tablet_1 │ │ │ │ ├── Show_tablet_1.pml │ │ │ │ ├── behavior.xar │ │ │ │ └── manifest.xml │ │ │ ├── Show_tablet_2 │ │ │ │ ├── Show_tablet_2.pml │ │ │ │ ├── behavior.xar │ │ │ │ └── manifest.xml │ │ │ ├── Show_tablet_3 │ │ │ │ ├── Show_tablet_3.pml │ │ │ │ ├── behavior.xar │ │ │ │ └── manifest.xml │ │ │ ├── Show_tablet_4 │ │ │ │ ├── Show_tablet_4.pml │ │ │ │ ├── behavior.xar │ │ │ │ └── manifest.xml │ │ │ └── Show_tablet_5 │ │ │ │ ├── Show_tablet_5.pml │ │ │ │ ├── behavior.xar │ │ │ │ └── manifest.xml │ │ └── translations │ │ │ ├── translation_de_DE.qm │ │ │ ├── translation_en_US.qm │ │ │ ├── translation_es_ES.qm │ │ │ ├── translation_fr_FR.qm │ │ │ ├── translation_it_IT.qm │ │ │ └── translation_ja_JP.qm │ ├── push-recovered │ │ ├── animations │ │ │ ├── pushed_0 │ │ │ │ └── behavior.xar │ │ │ ├── pushed_1 │ │ │ │ └── behavior.xar │ │ │ ├── pushed_2 │ │ │ │ └── behavior.xar │ │ │ └── searchHumans_1 │ │ │ │ └── behavior.xar │ │ ├── dialog │ │ │ └── solitary-push-recovered │ │ │ │ ├── solitary-push-recovered.dlg │ │ │ │ ├── solitary-push-recovered_enu.top │ │ │ │ ├── solitary-push-recovered_frf.top │ │ │ │ └── solitary-push-recovered_jpj.top │ │ ├── icon.png │ │ ├── manifest.xml │ │ └── solitary │ │ │ └── behavior.xar │ ├── robots_advanced │ │ ├── .metadata │ │ ├── html │ │ │ ├── css │ │ │ │ ├── FontFace │ │ │ │ │ └── DIN_WOFF │ │ │ │ │ │ ├── din_blackalternate-webfont.eot │ │ │ │ │ │ ├── din_blackalternate-webfont.svg │ │ │ │ │ │ ├── din_blackalternate-webfont.ttf │ │ │ │ │ │ ├── din_blackalternate-webfont.woff │ │ │ │ │ │ ├── din_blackt-webfont.eot │ │ │ │ │ │ ├── din_blackt-webfont.svg │ │ │ │ │ │ ├── din_blackt-webfont.ttf │ │ │ │ │ │ ├── din_blackt-webfont.woff │ │ │ │ │ │ ├── din_bold-webfont.eot │ │ │ │ │ │ ├── din_bold-webfont.svg │ │ │ │ │ │ ├── din_bold-webfont.ttf │ │ │ │ │ │ ├── din_bold-webfont.woff │ │ │ │ │ │ ├── din_light-webfont.eot │ │ │ │ │ │ ├── din_light-webfont.svg │ │ │ │ │ │ ├── din_light-webfont.ttf │ │ │ │ │ │ ├── din_light-webfont.woff │ │ │ │ │ │ ├── din_lightalternate-webfont.eot │ │ │ │ │ │ ├── din_lightalternate-webfont.svg │ │ │ │ │ │ ├── din_lightalternate-webfont.ttf │ │ │ │ │ │ ├── din_lightalternate-webfont.woff │ │ │ │ │ │ ├── din_regular-webfont.eot │ │ │ │ │ │ ├── din_regular-webfont.svg │ │ │ │ │ │ ├── din_regular-webfont.ttf │ │ │ │ │ │ └── din_regular-webfont.woff │ │ │ │ ├── bootstrap.css │ │ │ │ ├── font.css │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ │ ├── modal.css │ │ │ │ └── ng-table.min.css │ │ │ ├── favicon.ico │ │ │ ├── img │ │ │ │ ├── BigROBOT.png │ │ │ │ ├── load-120px.gif │ │ │ │ ├── print.png │ │ │ │ └── reload.png │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── app.js │ │ │ │ ├── config.js │ │ │ │ ├── core │ │ │ │ │ ├── controllers │ │ │ │ │ │ ├── homeController.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── module.js │ │ │ │ │ │ └── rootController.js │ │ │ │ │ ├── directives │ │ │ │ │ │ ├── directives.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── module.js │ │ │ │ │ ├── filters │ │ │ │ │ │ ├── filters.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── module.js │ │ │ │ │ └── services │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── languageService.js │ │ │ │ │ │ ├── module.js │ │ │ │ │ │ ├── networkService.js │ │ │ │ │ │ ├── prefService.js │ │ │ │ │ │ ├── qimessagingService.js │ │ │ │ │ │ ├── settings.js │ │ │ │ │ │ ├── storeService.js │ │ │ │ │ │ ├── systemService.js │ │ │ │ │ │ └── telepatheService.js │ │ │ │ ├── main.js │ │ │ │ └── states │ │ │ │ │ └── core.js │ │ │ ├── languages │ │ │ │ ├── Chinese.json │ │ │ │ ├── English.json │ │ │ │ ├── French.json │ │ │ │ └── Japanese.json │ │ │ ├── modules │ │ │ │ ├── hardware │ │ │ │ │ ├── css │ │ │ │ │ │ └── base.css │ │ │ │ │ ├── js │ │ │ │ │ │ ├── controllers │ │ │ │ │ │ │ ├── hardwareController.js │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── module.js │ │ │ │ │ │ └── states.js │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── Chinese.json │ │ │ │ │ │ ├── English.json │ │ │ │ │ │ ├── French.json │ │ │ │ │ │ └── Japanese.json │ │ │ │ │ └── partials │ │ │ │ │ │ └── base.html │ │ │ │ ├── memory │ │ │ │ │ ├── css │ │ │ │ │ │ └── base.css │ │ │ │ │ ├── js │ │ │ │ │ │ ├── controllers │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── memoryController.js │ │ │ │ │ │ │ └── module.js │ │ │ │ │ │ └── states.js │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── Chinese.json │ │ │ │ │ │ ├── English.json │ │ │ │ │ │ ├── French.json │ │ │ │ │ │ └── Japanese.json │ │ │ │ │ └── partials │ │ │ │ │ │ └── base.html │ │ │ │ ├── settings │ │ │ │ │ ├── css │ │ │ │ │ │ └── base.css │ │ │ │ │ ├── js │ │ │ │ │ │ ├── controllers │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── module.js │ │ │ │ │ │ │ └── settingsController.js │ │ │ │ │ │ └── states.js │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── Chinese.json │ │ │ │ │ │ ├── English.json │ │ │ │ │ │ ├── French.json │ │ │ │ │ │ └── Japanese.json │ │ │ │ │ └── partials │ │ │ │ │ │ └── base.html │ │ │ │ └── tethering │ │ │ │ │ ├── css │ │ │ │ │ └── base.css │ │ │ │ │ ├── js │ │ │ │ │ ├── controllers │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── module.js │ │ │ │ │ │ └── tetheringController.js │ │ │ │ │ └── states.js │ │ │ │ │ ├── lang │ │ │ │ │ ├── Chinese.json │ │ │ │ │ ├── English.json │ │ │ │ │ ├── French.json │ │ │ │ │ └── Japanese.json │ │ │ │ │ └── partials │ │ │ │ │ └── base.html │ │ │ └── partials │ │ │ │ ├── app │ │ │ │ ├── base.html │ │ │ │ └── home.html │ │ │ │ ├── directives │ │ │ │ ├── password-classic.html │ │ │ │ └── text-classic.html │ │ │ │ └── modal │ │ │ │ ├── askTethering.html │ │ │ │ └── permitDeactivation.html │ │ ├── manifest.xml │ │ └── robots_advanced.pml │ ├── run_dialog_dev │ │ ├── behavior.xar │ │ ├── html │ │ │ ├── index.html │ │ │ └── scripts │ │ │ │ ├── page_index.js │ │ │ │ └── utils_services.js │ │ ├── icon.png │ │ ├── init │ │ │ ├── SLMChinese4.5.fcf │ │ │ ├── SLMEnglish.fcf │ │ │ ├── SLMEnglish4.5.fcf │ │ │ ├── SLMFrench.fcf │ │ │ ├── SLMFrench4.5.fcf │ │ │ ├── SLMJapanese.fcf │ │ │ ├── SLMJapanese4.5.fcf │ │ │ ├── behavior.xar │ │ │ ├── icon.png │ │ │ └── manifest.xml │ │ ├── manifest.xml │ │ ├── smartcompiler │ │ └── translations │ │ │ ├── translation_de_DE.qm │ │ │ ├── translation_en_US.qm │ │ │ ├── translation_es_ES.qm │ │ │ ├── translation_fr_FR.qm │ │ │ ├── translation_it_IT.qm │ │ │ ├── translation_ja_JP.qm │ │ │ └── translation_zh_CN.qm │ ├── semantic-library │ │ ├── 0 │ │ │ ├── awarenesslinks │ │ │ │ ├── activities.xml │ │ │ │ ├── extractors.xml │ │ │ │ └── semantictreeconversions.xml │ │ │ ├── predicates │ │ │ │ └── predicates.json │ │ │ └── staticdatabases │ │ │ │ ├── concepts.bdb │ │ │ │ ├── english_to_french.bdb │ │ │ │ ├── english_to_japanese.bdb │ │ │ │ ├── englishanimations.bdb │ │ │ │ ├── englishdatabase.bdb │ │ │ │ ├── englishsynthesizer.bdb │ │ │ │ ├── french_to_english.bdb │ │ │ │ ├── french_to_japanese.bdb │ │ │ │ ├── frenchanimations.bdb │ │ │ │ ├── frenchdatabase.bdb │ │ │ │ ├── frenchsynthesizer.bdb │ │ │ │ ├── japanese_to_english.bdb │ │ │ │ ├── japanese_to_french.bdb │ │ │ │ ├── japaneseanimations.bdb │ │ │ │ ├── japanesedatabase.bdb │ │ │ │ └── japanesesynthesizer.bdb │ │ ├── icon.png │ │ └── manifest.xml │ ├── signs-and-feedback │ │ ├── bin │ │ │ └── signs_and_feedback │ │ ├── manifest.xml │ │ ├── python │ │ └── signs_and_feedback │ │ │ ├── config_old_signs_and_feedback.yaml │ │ │ └── config_signs_and_feedback.yaml │ └── sleep-reactions │ │ ├── .metadata │ │ ├── Animations │ │ ├── End_ShakeHead │ │ │ └── behavior.xar │ │ └── Start_ShakeHead │ │ │ └── behavior.xar │ │ ├── RandomHand │ │ └── behavior.xar │ │ ├── TouchHand │ │ └── behavior.xar │ │ ├── icon.png │ │ ├── manifest.xml │ │ └── sleep-reactions.pml ├── custom_apps │ ├── comco19 │ │ ├── Quiz.pml │ │ ├── comco │ │ │ └── behavior.xar │ │ ├── html │ │ │ ├── .eslintrc │ │ │ ├── .htmlhintrc │ │ │ ├── css │ │ │ │ └── styles.css │ │ │ ├── fonts │ │ │ │ ├── dosis-v14-latin-200.eot │ │ │ │ ├── dosis-v14-latin-200.svg │ │ │ │ ├── dosis-v14-latin-200.ttf │ │ │ │ ├── dosis-v14-latin-200.woff │ │ │ │ ├── dosis-v14-latin-200.woff2 │ │ │ │ ├── dosis-v14-latin-300.eot │ │ │ │ ├── dosis-v14-latin-300.svg │ │ │ │ ├── dosis-v14-latin-300.ttf │ │ │ │ ├── dosis-v14-latin-300.woff │ │ │ │ ├── dosis-v14-latin-300.woff2 │ │ │ │ ├── dosis-v14-latin-500.eot │ │ │ │ ├── dosis-v14-latin-500.svg │ │ │ │ ├── dosis-v14-latin-500.ttf │ │ │ │ ├── dosis-v14-latin-500.woff │ │ │ │ ├── dosis-v14-latin-500.woff2 │ │ │ │ ├── dosis-v14-latin-600.eot │ │ │ │ ├── dosis-v14-latin-600.svg │ │ │ │ ├── dosis-v14-latin-600.ttf │ │ │ │ ├── dosis-v14-latin-600.woff │ │ │ │ ├── dosis-v14-latin-600.woff2 │ │ │ │ ├── dosis-v14-latin-700.eot │ │ │ │ ├── dosis-v14-latin-700.svg │ │ │ │ ├── dosis-v14-latin-700.ttf │ │ │ │ ├── dosis-v14-latin-700.woff │ │ │ │ ├── dosis-v14-latin-700.woff2 │ │ │ │ ├── dosis-v14-latin-800.eot │ │ │ │ ├── dosis-v14-latin-800.svg │ │ │ │ ├── dosis-v14-latin-800.ttf │ │ │ │ ├── dosis-v14-latin-800.woff │ │ │ │ ├── dosis-v14-latin-800.woff2 │ │ │ │ ├── dosis-v14-latin-regular.eot │ │ │ │ ├── dosis-v14-latin-regular.svg │ │ │ │ ├── dosis-v14-latin-regular.ttf │ │ │ │ ├── dosis-v14-latin-regular.woff │ │ │ │ ├── dosis-v14-latin-regular.woff2 │ │ │ │ ├── muli-v16-latin-200.eot │ │ │ │ ├── muli-v16-latin-200.svg │ │ │ │ ├── muli-v16-latin-200.ttf │ │ │ │ ├── muli-v16-latin-200.woff │ │ │ │ ├── muli-v16-latin-200.woff2 │ │ │ │ ├── muli-v16-latin-300.eot │ │ │ │ ├── muli-v16-latin-300.svg │ │ │ │ ├── muli-v16-latin-300.ttf │ │ │ │ ├── muli-v16-latin-300.woff │ │ │ │ ├── muli-v16-latin-300.woff2 │ │ │ │ ├── muli-v16-latin-600.eot │ │ │ │ ├── muli-v16-latin-600.svg │ │ │ │ ├── muli-v16-latin-600.ttf │ │ │ │ ├── muli-v16-latin-600.woff │ │ │ │ ├── muli-v16-latin-600.woff2 │ │ │ │ ├── muli-v16-latin-700.eot │ │ │ │ ├── muli-v16-latin-700.svg │ │ │ │ ├── muli-v16-latin-700.ttf │ │ │ │ ├── muli-v16-latin-700.woff │ │ │ │ ├── muli-v16-latin-700.woff2 │ │ │ │ ├── muli-v16-latin-800.eot │ │ │ │ ├── muli-v16-latin-800.svg │ │ │ │ ├── muli-v16-latin-800.ttf │ │ │ │ ├── muli-v16-latin-800.woff │ │ │ │ ├── muli-v16-latin-800.woff2 │ │ │ │ ├── muli-v16-latin-900.eot │ │ │ │ ├── muli-v16-latin-900.svg │ │ │ │ ├── muli-v16-latin-900.ttf │ │ │ │ ├── muli-v16-latin-900.woff │ │ │ │ ├── muli-v16-latin-900.woff2 │ │ │ │ ├── muli-v16-latin-regular.eot │ │ │ │ ├── muli-v16-latin-regular.svg │ │ │ │ ├── muli-v16-latin-regular.ttf │ │ │ │ ├── muli-v16-latin-regular.woff │ │ │ │ └── muli-v16-latin-regular.woff2 │ │ │ ├── images │ │ │ │ ├── airplane-2.png │ │ │ │ ├── airplane.png │ │ │ │ ├── brain-logo-big-3-3.png │ │ │ │ ├── copy.png │ │ │ │ ├── default.cur │ │ │ │ ├── default.png │ │ │ │ ├── facebook.png │ │ │ │ ├── google-scholar-logo.png │ │ │ │ ├── hand.cur │ │ │ │ ├── hand.png │ │ │ │ ├── people │ │ │ │ │ ├── alex_garcia_small.png │ │ │ │ │ ├── colin_phillips.jpg │ │ │ │ │ ├── colin_phillips2.jpg │ │ │ │ │ ├── colin_phillips_small.jpg │ │ │ │ │ ├── dieuwke_hupkes.jpg │ │ │ │ │ ├── dieuwke_hupkes2.jpg │ │ │ │ │ ├── dieuwke_hupkes_small.jpg │ │ │ │ │ ├── dimitrios_pinotsis_small.png │ │ │ │ │ ├── james_dicarlo.jpg │ │ │ │ │ ├── james_dicarlo_small.jpg │ │ │ │ │ ├── karl_friston.jpg │ │ │ │ │ ├── karl_friston2.jpg │ │ │ │ │ ├── karl_friston_small.jpg │ │ │ │ │ ├── pascal_nieters_small.png │ │ │ │ │ ├── pieter_vries_small.png │ │ │ │ │ ├── roger_levy.jpg │ │ │ │ │ ├── roger_levy2.jpg │ │ │ │ │ ├── roger_levy_small.jpg │ │ │ │ │ ├── sebastian_kahl_small.png │ │ │ │ │ ├── terry_stewart.jpg │ │ │ │ │ ├── terry_stewart2.jpg │ │ │ │ │ ├── terry_stewart_small.jpg │ │ │ │ │ ├── tim_kietzmann.jpg │ │ │ │ │ ├── tim_kietzmann_small.jpg │ │ │ │ │ ├── viviane_clay_small.png │ │ │ │ │ ├── will_monroe.jpg │ │ │ │ │ ├── will_monroe2.jpg │ │ │ │ │ ├── will_monroe_new.jpg │ │ │ │ │ ├── will_monroe_new_small.jpg │ │ │ │ │ ├── will_monroe_old.jpg │ │ │ │ │ └── will_monroe_small.jpg │ │ │ │ ├── pepper-illustration.png │ │ │ │ ├── pepper-outline.png │ │ │ │ ├── poster-outline.png │ │ │ │ ├── research-gate-logo.png │ │ │ │ ├── tile13.png │ │ │ │ ├── twitter.png │ │ │ │ ├── website.png │ │ │ │ └── woman-outline.png │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── jquery-3.3.1.min.js │ │ │ │ ├── qi.js │ │ │ │ └── script.js │ │ │ └── package-lock.json │ │ ├── icon.png │ │ ├── manifest.xml │ │ └── translations │ │ │ ├── translation_de_DE.ts │ │ │ └── translation_en_US.ts │ ├── drinkquiz │ │ └── Quiz │ │ │ ├── Quiz.pml │ │ │ ├── html │ │ │ ├── .eslintrc │ │ │ ├── .htmlhintrc │ │ │ ├── cogsci.tsv │ │ │ ├── css │ │ │ │ ├── MaterialIcons-Regular.ttf │ │ │ │ ├── MaterialIcons-Regular.woff │ │ │ │ ├── MaterialIcons-Regular.woff2 │ │ │ │ ├── materialize.css │ │ │ │ ├── materialize.min.css │ │ │ │ └── style.css │ │ │ ├── deutsch.tsv │ │ │ ├── digitalisierung.tsv │ │ │ ├── fonts │ │ │ │ ├── MaterialIcons-Regular.woff2 │ │ │ │ ├── roboto │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── Roboto-Black.ttf │ │ │ │ │ ├── Roboto-BlackItalic.ttf │ │ │ │ │ ├── Roboto-Bold.ttf │ │ │ │ │ ├── Roboto-Bold.woff │ │ │ │ │ ├── Roboto-Bold.woff2 │ │ │ │ │ ├── Roboto-BoldItalic.ttf │ │ │ │ │ ├── Roboto-Italic.ttf │ │ │ │ │ ├── Roboto-Light.ttf │ │ │ │ │ ├── Roboto-Light.woff │ │ │ │ │ ├── Roboto-Light.woff2 │ │ │ │ │ ├── Roboto-LightItalic.ttf │ │ │ │ │ ├── Roboto-Medium.ttf │ │ │ │ │ ├── Roboto-Medium.woff │ │ │ │ │ ├── Roboto-Medium.woff2 │ │ │ │ │ ├── Roboto-MediumItalic.ttf │ │ │ │ │ ├── Roboto-Regular.ttf │ │ │ │ │ ├── Roboto-Regular.woff │ │ │ │ │ ├── Roboto-Regular.woff2 │ │ │ │ │ ├── Roboto-Thin.ttf │ │ │ │ │ ├── Roboto-Thin.woff │ │ │ │ │ ├── Roboto-Thin.woff2 │ │ │ │ │ └── Roboto-ThinItalic.ttf │ │ │ │ └── ubuntu │ │ │ │ │ ├── UFL.txt │ │ │ │ │ ├── Ubuntu-Bold.ttf │ │ │ │ │ ├── Ubuntu-Bold.woff │ │ │ │ │ ├── Ubuntu-Bold.woff2 │ │ │ │ │ ├── Ubuntu-BoldItalic.ttf │ │ │ │ │ ├── Ubuntu-BoldItalic.woff │ │ │ │ │ ├── Ubuntu-BoldItalic.woff2 │ │ │ │ │ ├── Ubuntu-Italic.ttf │ │ │ │ │ ├── Ubuntu-Italic.woff │ │ │ │ │ ├── Ubuntu-Italic.woff2 │ │ │ │ │ ├── Ubuntu-Light.ttf │ │ │ │ │ ├── Ubuntu-Light.woff │ │ │ │ │ ├── Ubuntu-Light.woff2 │ │ │ │ │ ├── Ubuntu-LightItalic.ttf │ │ │ │ │ ├── Ubuntu-LightItalic.woff │ │ │ │ │ ├── Ubuntu-LightItalic.woff2 │ │ │ │ │ ├── Ubuntu-Medium.ttf │ │ │ │ │ ├── Ubuntu-Medium.woff │ │ │ │ │ ├── Ubuntu-Medium.woff2 │ │ │ │ │ ├── Ubuntu-MediumItalic.ttf │ │ │ │ │ ├── Ubuntu-MediumItalic.woff │ │ │ │ │ ├── Ubuntu-MediumItalic.woff2 │ │ │ │ │ ├── Ubuntu-Regular.ttf │ │ │ │ │ ├── Ubuntu-Regular.woff │ │ │ │ │ └── Ubuntu-Regular.woff2 │ │ │ ├── ibm.tsv │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── jquery-3.3.1.min.js │ │ │ │ ├── materialize.js │ │ │ │ ├── materialize.min.js │ │ │ │ ├── qi.js │ │ │ │ └── script.js │ │ │ └── package-lock.json │ │ │ ├── icon.png │ │ │ ├── manifest.xml │ │ │ ├── quiz │ │ │ └── behavior.xar │ │ │ └── translations │ │ │ ├── translation_de_DE.ts │ │ │ └── translation_en_US.ts │ ├── quiz │ │ ├── behavior_1 │ │ │ └── behavior.xar │ │ ├── html │ │ │ ├── .eslintrc │ │ │ ├── cogsci.tsv │ │ │ ├── css │ │ │ │ ├── MaterialIcons-Regular.ttf │ │ │ │ ├── MaterialIcons-Regular.woff │ │ │ │ ├── MaterialIcons-Regular.woff2 │ │ │ │ ├── materialize.css │ │ │ │ ├── materialize.min.css │ │ │ │ └── style.css │ │ │ ├── deutsch.tsv │ │ │ ├── fonts │ │ │ │ ├── MaterialIcons-Regular.woff2 │ │ │ │ ├── roboto │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── Roboto-Black.ttf │ │ │ │ │ ├── Roboto-BlackItalic.ttf │ │ │ │ │ ├── Roboto-Bold.ttf │ │ │ │ │ ├── Roboto-Bold.woff │ │ │ │ │ ├── Roboto-Bold.woff2 │ │ │ │ │ ├── Roboto-BoldItalic.ttf │ │ │ │ │ ├── Roboto-Italic.ttf │ │ │ │ │ ├── Roboto-Light.ttf │ │ │ │ │ ├── Roboto-Light.woff │ │ │ │ │ ├── Roboto-Light.woff2 │ │ │ │ │ ├── Roboto-LightItalic.ttf │ │ │ │ │ ├── Roboto-Medium.ttf │ │ │ │ │ ├── Roboto-Medium.woff │ │ │ │ │ ├── Roboto-Medium.woff2 │ │ │ │ │ ├── Roboto-MediumItalic.ttf │ │ │ │ │ ├── Roboto-Regular.ttf │ │ │ │ │ ├── Roboto-Regular.woff │ │ │ │ │ ├── Roboto-Regular.woff2 │ │ │ │ │ ├── Roboto-Thin.ttf │ │ │ │ │ ├── Roboto-Thin.woff │ │ │ │ │ ├── Roboto-Thin.woff2 │ │ │ │ │ └── Roboto-ThinItalic.ttf │ │ │ │ └── ubuntu │ │ │ │ │ ├── UFL.txt │ │ │ │ │ ├── Ubuntu-Bold.ttf │ │ │ │ │ ├── Ubuntu-Bold.woff │ │ │ │ │ ├── Ubuntu-Bold.woff2 │ │ │ │ │ ├── Ubuntu-BoldItalic.ttf │ │ │ │ │ ├── Ubuntu-BoldItalic.woff │ │ │ │ │ ├── Ubuntu-BoldItalic.woff2 │ │ │ │ │ ├── Ubuntu-Italic.ttf │ │ │ │ │ ├── Ubuntu-Italic.woff │ │ │ │ │ ├── Ubuntu-Italic.woff2 │ │ │ │ │ ├── Ubuntu-Light.ttf │ │ │ │ │ ├── Ubuntu-Light.woff │ │ │ │ │ ├── Ubuntu-Light.woff2 │ │ │ │ │ ├── Ubuntu-LightItalic.ttf │ │ │ │ │ ├── Ubuntu-LightItalic.woff │ │ │ │ │ ├── Ubuntu-LightItalic.woff2 │ │ │ │ │ ├── Ubuntu-Medium.ttf │ │ │ │ │ ├── Ubuntu-Medium.woff │ │ │ │ │ ├── Ubuntu-Medium.woff2 │ │ │ │ │ ├── Ubuntu-MediumItalic.ttf │ │ │ │ │ ├── Ubuntu-MediumItalic.woff │ │ │ │ │ ├── Ubuntu-MediumItalic.woff2 │ │ │ │ │ ├── Ubuntu-Regular.ttf │ │ │ │ │ ├── Ubuntu-Regular.woff │ │ │ │ │ └── Ubuntu-Regular.woff2 │ │ │ ├── ibm.tsv │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── jquery-3.3.1.min.js │ │ │ │ ├── materialize.js │ │ │ │ ├── materialize.min.js │ │ │ │ ├── qi.js │ │ │ │ └── script.js │ │ │ ├── node_modules.zip │ │ │ └── package-lock.json │ │ ├── icon.png │ │ ├── manifest.xml │ │ └── quiz_test.pml │ └── quiz2 │ │ └── Quiz │ │ ├── Quiz.pml │ │ ├── html │ │ ├── .eslintrc │ │ ├── .htmlhintrc │ │ ├── cogsci.tsv │ │ ├── css │ │ │ ├── MaterialIcons-Regular.ttf │ │ │ ├── MaterialIcons-Regular.woff │ │ │ ├── MaterialIcons-Regular.woff2 │ │ │ ├── materialize.css │ │ │ ├── materialize.min.css │ │ │ └── style.css │ │ ├── deutsch.tsv │ │ ├── digitalisierung.tsv │ │ ├── fonts │ │ │ ├── MaterialIcons-Regular.woff2 │ │ │ ├── roboto │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── Roboto-Black.ttf │ │ │ │ ├── Roboto-BlackItalic.ttf │ │ │ │ ├── Roboto-Bold.ttf │ │ │ │ ├── Roboto-Bold.woff │ │ │ │ ├── Roboto-Bold.woff2 │ │ │ │ ├── Roboto-BoldItalic.ttf │ │ │ │ ├── Roboto-Italic.ttf │ │ │ │ ├── Roboto-Light.ttf │ │ │ │ ├── Roboto-Light.woff │ │ │ │ ├── Roboto-Light.woff2 │ │ │ │ ├── Roboto-LightItalic.ttf │ │ │ │ ├── Roboto-Medium.ttf │ │ │ │ ├── Roboto-Medium.woff │ │ │ │ ├── Roboto-Medium.woff2 │ │ │ │ ├── Roboto-MediumItalic.ttf │ │ │ │ ├── Roboto-Regular.ttf │ │ │ │ ├── Roboto-Regular.woff │ │ │ │ ├── Roboto-Regular.woff2 │ │ │ │ ├── Roboto-Thin.ttf │ │ │ │ ├── Roboto-Thin.woff │ │ │ │ ├── Roboto-Thin.woff2 │ │ │ │ └── Roboto-ThinItalic.ttf │ │ │ └── ubuntu │ │ │ │ ├── UFL.txt │ │ │ │ ├── Ubuntu-Bold.ttf │ │ │ │ ├── Ubuntu-Bold.woff │ │ │ │ ├── Ubuntu-Bold.woff2 │ │ │ │ ├── Ubuntu-BoldItalic.ttf │ │ │ │ ├── Ubuntu-BoldItalic.woff │ │ │ │ ├── Ubuntu-BoldItalic.woff2 │ │ │ │ ├── Ubuntu-Italic.ttf │ │ │ │ ├── Ubuntu-Italic.woff │ │ │ │ ├── Ubuntu-Italic.woff2 │ │ │ │ ├── Ubuntu-Light.ttf │ │ │ │ ├── Ubuntu-Light.woff │ │ │ │ ├── Ubuntu-Light.woff2 │ │ │ │ ├── Ubuntu-LightItalic.ttf │ │ │ │ ├── Ubuntu-LightItalic.woff │ │ │ │ ├── Ubuntu-LightItalic.woff2 │ │ │ │ ├── Ubuntu-Medium.ttf │ │ │ │ ├── Ubuntu-Medium.woff │ │ │ │ ├── Ubuntu-Medium.woff2 │ │ │ │ ├── Ubuntu-MediumItalic.ttf │ │ │ │ ├── Ubuntu-MediumItalic.woff │ │ │ │ ├── Ubuntu-MediumItalic.woff2 │ │ │ │ ├── Ubuntu-Regular.ttf │ │ │ │ ├── Ubuntu-Regular.woff │ │ │ │ └── Ubuntu-Regular.woff2 │ │ ├── ibm.tsv │ │ ├── index.html │ │ ├── js │ │ │ ├── jquery-3.3.1.min.js │ │ │ ├── materialize.js │ │ │ ├── materialize.min.js │ │ │ ├── qi.js │ │ │ └── script.js │ │ └── package-lock.json │ │ ├── icon.png │ │ ├── manifest.xml │ │ ├── quiz │ │ └── behavior.xar │ │ └── translations │ │ ├── translation_de_DE.ts │ │ └── translation_en_US.ts └── transfer_learning │ ├── label_image.py │ ├── retrain.py │ └── run_command.txt └── docs ├── LICENSE.txt ├── README.txt ├── SS2019.html ├── WS2018.html ├── assets ├── .DS_Store ├── css │ ├── font-awesome.min.css │ ├── images │ │ ├── arrow.svg │ │ ├── bars.svg │ │ └── close.svg │ ├── main.css │ └── noscript.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── js │ ├── breakpoints.min.js │ ├── browser.min.js │ ├── jquery.min.js │ ├── jquery.scrollex.min.js │ ├── jquery.scrolly.min.js │ ├── main.js │ └── util.js └── sass │ ├── libs │ ├── _breakpoints.scss │ ├── _functions.scss │ ├── _html-grid.scss │ ├── _mixins.scss │ ├── _vars.scss │ └── _vendor.scss │ ├── main.scss │ └── noscript.scss ├── convcontextmem.html ├── images ├── .DS_Store ├── Map_Original.png ├── Map_corrected.png ├── banner.jpg ├── banner.png ├── flowchart.jpg ├── pic01.jpg ├── pic02.jpg ├── pic03.jpg ├── pic04.jpg ├── pic05.jpg └── rosgraph.png ├── index.html ├── robovision.html ├── spatialnav.html └── speechrecogn.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/README.md -------------------------------------------------------------------------------- /apps/basic_channel/altactilegesture-9dd1d7/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/altactilegesture-9dd1d7/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/altactilegesture-9dd1d7/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/altactilegesture-9dd1d7/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/animationMode/.metadata: -------------------------------------------------------------------------------- 1 | Type: ChoregrapheProject 2 | Version: 2.0 3 | title: animationMode 4 | -------------------------------------------------------------------------------- /apps/basic_channel/animationMode/animationMode.pml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animationMode/animationMode.pml -------------------------------------------------------------------------------- /apps/basic_channel/animationMode/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animationMode/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animationMode/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animationMode/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/animations/.metadata: -------------------------------------------------------------------------------- 1 | Type: ChoregrapheBoxLibrary 2 | Version: 3.0 3 | title: animations 4 | -------------------------------------------------------------------------------- /apps/basic_channel/animations/LED/Angry/box.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/LED/Angry/box.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/LED/Blink/box.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/LED/Blink/box.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/LED/BlinkRandom/box.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/LED/BlinkRandom/box.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/LED/Cautious/box.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/LED/Cautious/box.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/LED/CircleEyes/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/LED/CircleEyes/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/LED/EyesOnOff/box.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/LED/EyesOnOff/box.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/LED/Happy/box.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/LED/Happy/box.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/LED/Laugh/box.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/LED/Laugh/box.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/LED/Mischievous/box.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/LED/Mischievous/box.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/LED/Sad/box.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/LED/Sad/box.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/LED/Shy/box.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/LED/Shy/box.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/LED/Sick/box.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/LED/Sick/box.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/LED/Thinking/box.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/LED/Thinking/box.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/LED/Zen/box.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/LED/Zen/box.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/LED/xalinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/LED/xalinfo -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/BodyTalk/Listening/xalinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/BodyTalk/Listening/xalinfo -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/BodyTalk/Speaking/xalinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/BodyTalk/Speaking/xalinfo -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/BodyTalk/Thinking/xalinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/BodyTalk/Thinking/xalinfo -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/BodyTalk/xalinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/BodyTalk/xalinfo -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Emotions/Negative/xalinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Emotions/Negative/xalinfo -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Emotions/Neutral/xalinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Emotions/Neutral/xalinfo -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Emotions/Positive/xalinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Emotions/Positive/xalinfo -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Emotions/xalinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Emotions/xalinfo -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Angry_1/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Angry_1/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Angry_2/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Angry_2/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Angry_3/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Angry_3/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/But_1/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/But_1/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Far_1/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Far_1/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Far_2/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Far_2/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Far_3/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Far_3/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Give_1/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Give_1/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Give_2/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Give_2/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Give_3/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Give_3/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Give_4/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Give_4/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Give_5/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Give_5/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Give_6/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Give_6/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Great_1/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Great_1/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Hey_1/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Hey_1/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Hey_10/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Hey_10/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Hey_2/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Hey_2/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Hey_3/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Hey_3/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Hey_4/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Hey_4/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Hey_6/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Hey_6/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Hey_7/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Hey_7/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Hey_8/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Hey_8/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Hey_9/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Hey_9/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Hide_1/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Hide_1/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Hot_1/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Hot_1/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Hot_2/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Hot_2/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Joy_1/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Joy_1/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Look_1/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Look_1/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Look_2/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Look_2/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Maybe_1/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Maybe_1/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Me_1/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Me_1/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Me_2/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Me_2/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Me_4/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Me_4/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Me_7/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Me_7/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Me_8/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Me_8/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Mime_1/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Mime_1/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Mime_2/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Mime_2/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Next_1/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Next_1/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/No_1/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/No_1/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/No_2/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/No_2/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/No_3/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/No_3/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/No_4/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/No_4/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/No_5/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/No_5/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/No_6/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/No_6/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/No_7/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/No_7/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/No_8/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/No_8/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/No_9/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/No_9/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Shy_1/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Shy_1/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Take_1/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Take_1/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/This_1/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/This_1/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/This_10/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/This_10/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/This_11/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/This_11/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/This_12/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/This_12/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/This_13/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/This_13/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/This_14/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/This_14/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/This_15/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/This_15/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/This_2/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/This_2/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/This_3/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/This_3/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/This_4/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/This_4/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/This_5/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/This_5/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/This_6/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/This_6/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/This_7/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/This_7/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/This_8/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/This_8/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/This_9/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/This_9/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Wings_1/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Wings_1/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Wings_2/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Wings_2/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Wings_3/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Wings_3/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Wings_4/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Wings_4/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Wings_5/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Wings_5/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Yes_1/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Yes_1/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Yes_2/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Yes_2/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Yes_3/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Yes_3/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/You_1/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/You_1/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/You_2/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/You_2/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/You_3/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/You_3/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/You_4/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/You_4/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/You_5/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/You_5/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/Yum_1/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/Yum_1/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Gestures/xalinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Gestures/xalinfo -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Reactions/Heat_1/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Reactions/Heat_1/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Reactions/Heat_2/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Reactions/Heat_2/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Reactions/xalinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Reactions/xalinfo -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Waiting/Drink_1/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Waiting/Drink_1/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Waiting/DriveCar_1/borbo5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Waiting/DriveCar_1/borbo5.ogg -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Waiting/DriveCar_1/yoohoo.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Waiting/DriveCar_1/yoohoo.ogg -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Waiting/Knight_1/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Waiting/Knight_1/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Waiting/KnockEye_1/neonOn.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Waiting/KnockEye_1/neonOn.ogg -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Waiting/KungFu_1/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Waiting/KungFu_1/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Waiting/Rest_1/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Waiting/Rest_1/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Waiting/Robot_1/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Waiting/Robot_1/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Waiting/Robot_1/r2d2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Waiting/Robot_1/r2d2.ogg -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Waiting/Taxi_1/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Waiting/Taxi_1/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Waiting/Taxi_1/hey9.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Waiting/Taxi_1/hey9.ogg -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Waiting/Think_1/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Waiting/Think_1/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Waiting/Think_2/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Waiting/Think_2/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Waiting/Think_3/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Waiting/Think_3/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Waiting/Think_4/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Waiting/Think_4/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Waiting/Waddle_1/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Waiting/Waddle_1/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Waiting/Waddle_2/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Waiting/Waddle_2/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Waiting/WakeUp_1/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Waiting/WakeUp_1/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Waiting/WakeUp_1/yawn2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Waiting/WakeUp_1/yawn2.ogg -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Waiting/WakeUp_1/yawn3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Waiting/WakeUp_1/yawn3.ogg -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Waiting/Zombie_1/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Waiting/Zombie_1/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/Waiting/xalinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/Waiting/xalinfo -------------------------------------------------------------------------------- /apps/basic_channel/animations/Stand/xalinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/Stand/xalinfo -------------------------------------------------------------------------------- /apps/basic_channel/animations/animations.pml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/animations.pml -------------------------------------------------------------------------------- /apps/basic_channel/animations/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/animations/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/animations/xalinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/animations/xalinfo -------------------------------------------------------------------------------- /apps/basic_channel/applauncher/.metadata: -------------------------------------------------------------------------------- 1 | Type: ChoregrapheProject 2 | Version: 2.0 3 | -------------------------------------------------------------------------------- /apps/basic_channel/applauncher/adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/applauncher/adb -------------------------------------------------------------------------------- /apps/basic_channel/applauncher/applaunchertablet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/applauncher/applaunchertablet.py -------------------------------------------------------------------------------- /apps/basic_channel/applauncher/html/jp.softbank.rb.rald.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/applauncher/html/jp.softbank.rb.rald.apk -------------------------------------------------------------------------------- /apps/basic_channel/applauncher/html/starting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/applauncher/html/starting.html -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/animations/bipGentle/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/animations/bipGentle/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/animations/endReco/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/animations/endReco/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/animations/hello/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/animations/hello/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/animations/networkOut/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/animations/networkOut/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/animations/nok/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/animations/nok/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/animations/ok/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/animations/ok/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/animations/onNextPage/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/animations/onNextPage/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/animations/onPlugged/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/animations/onPlugged/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/animations/onPrevPage/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/animations/onPrevPage/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/animations/poseInit/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/animations/poseInit/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/animations/poseInitUp/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/animations/poseInitUp/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/animations/shutdown/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/animations/shutdown/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/animations/success/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/animations/success/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/animations/updateLoop/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/animations/updateLoop/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/animations/updateOut/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/animations/updateOut/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/animations/warning/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/animations/warning/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/bin/aapt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/bin/aapt -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/html/JapaneseKeyboard.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/html/JapaneseKeyboard.apk -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/html/LatinIME_settings_hacked.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/html/LatinIME_settings_hacked.apk -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/html/bootconfig.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/html/bootconfig.apk -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/html/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/html/favicon.ico -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/html/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/html/img/loading.gif -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/html/preloading_dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/html/preloading_dialog.html -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/services/albootconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/services/albootconfig.py -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/services/simple_encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/services/simple_encryption.py -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/sounds/creme.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/sounds/creme.ogg -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/sounds/ding.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/sounds/ding.ogg -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/sounds/eapar.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/sounds/eapar.ogg -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/sounds/euyia.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/sounds/euyia.ogg -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/sounds/missed.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/sounds/missed.ogg -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/sounds/ok_02.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/sounds/ok_02.ogg -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/sounds/ok_03.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/sounds/ok_03.ogg -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/sounds/ok_04.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/sounds/ok_04.ogg -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/sounds/prev_next.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/sounds/prev_next.ogg -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/sounds/tablet_loaded_01.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/sounds/tablet_loaded_01.ogg -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/sounds/tablet_loaded_02.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/sounds/tablet_loaded_02.ogg -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/sounds/tablet_loading_01.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/sounds/tablet_loading_01.ogg -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/sounds/turnoff.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/sounds/turnoff.ogg -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/sounds/update_out.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/sounds/update_out.ogg -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/sounds/wait_music_network.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/sounds/wait_music_network.ogg -------------------------------------------------------------------------------- /apps/basic_channel/boot-config/sounds/wait_music_update.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/boot-config/sounds/wait_music_update.ogg -------------------------------------------------------------------------------- /apps/basic_channel/dialog_adjust_volume/html/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_adjust_volume/html/css/style.css -------------------------------------------------------------------------------- /apps/basic_channel/dialog_adjust_volume/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_adjust_volume/html/index.html -------------------------------------------------------------------------------- /apps/basic_channel/dialog_adjust_volume/html/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_adjust_volume/html/js/main.js -------------------------------------------------------------------------------- /apps/basic_channel/dialog_adjust_volume/html/js/robotutils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_adjust_volume/html/js/robotutils.js -------------------------------------------------------------------------------- /apps/basic_channel/dialog_adjust_volume/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_adjust_volume/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/dialog_adjust_volume/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_adjust_volume/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/dialog_adjust_volume/scripts/show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_adjust_volume/scripts/show.py -------------------------------------------------------------------------------- /apps/basic_channel/dialog_adjust_volume/scripts/stk/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | STK - A collection of libraries useful for making apps with NAOqi. 3 | """ 4 | -------------------------------------------------------------------------------- /apps/basic_channel/dialog_adjust_volume/scripts/stk/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_adjust_volume/scripts/stk/events.py -------------------------------------------------------------------------------- /apps/basic_channel/dialog_adjust_volume/scripts/stk/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_adjust_volume/scripts/stk/logging.py -------------------------------------------------------------------------------- /apps/basic_channel/dialog_adjust_volume/scripts/stk/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_adjust_volume/scripts/stk/runner.py -------------------------------------------------------------------------------- /apps/basic_channel/dialog_applauncher/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_applauncher/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/dialog_applauncher/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_applauncher/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/dialog_battery_capacity/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_battery_capacity/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/dialog_battery_capacity/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_battery_capacity/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/dialog_battery_level/html/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_battery_level/html/css/style.css -------------------------------------------------------------------------------- /apps/basic_channel/dialog_battery_level/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_battery_level/html/index.html -------------------------------------------------------------------------------- /apps/basic_channel/dialog_battery_level/html/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_battery_level/html/js/main.js -------------------------------------------------------------------------------- /apps/basic_channel/dialog_battery_level/html/js/robotutils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_battery_level/html/js/robotutils.js -------------------------------------------------------------------------------- /apps/basic_channel/dialog_battery_level/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_battery_level/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/dialog_battery_level/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_battery_level/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/dialog_battery_level/scripts/stk/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | STK - A collection of libraries useful for making apps with NAOqi. 3 | """ 4 | -------------------------------------------------------------------------------- /apps/basic_channel/dialog_battery_level/scripts/stk/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_battery_level/scripts/stk/events.py -------------------------------------------------------------------------------- /apps/basic_channel/dialog_battery_level/scripts/stk/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_battery_level/scripts/stk/logging.py -------------------------------------------------------------------------------- /apps/basic_channel/dialog_battery_level/scripts/stk/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_battery_level/scripts/stk/runner.py -------------------------------------------------------------------------------- /apps/basic_channel/dialog_bleep_sounds/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_bleep_sounds/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/dialog_bleep_sounds/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_bleep_sounds/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/dialog_can_you_repeat/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_can_you_repeat/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/dialog_can_you_repeat/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_can_you_repeat/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/dialog_clock/dlg_clock/dlg_clock.dlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_clock/dlg_clock/dlg_clock.dlg -------------------------------------------------------------------------------- /apps/basic_channel/dialog_clock/dlg_clock/dlg_clock_enu.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_clock/dlg_clock/dlg_clock_enu.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_clock/dlg_clock/dlg_clock_frf.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_clock/dlg_clock/dlg_clock_frf.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_clock/dlg_clock/dlg_clock_ged.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_clock/dlg_clock/dlg_clock_ged.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_clock/dlg_clock/dlg_clock_iti.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_clock/dlg_clock/dlg_clock_iti.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_clock/dlg_clock/dlg_clock_jpj.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_clock/dlg_clock/dlg_clock_jpj.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_clock/dlg_clock/dlg_clock_spe.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_clock/dlg_clock/dlg_clock_spe.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_clock/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_clock/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/dialog_clock/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_clock/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/dialog_engines/bhv_rest/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_engines/bhv_rest/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/dialog_engines/bhv_wake_up/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_engines/bhv_wake_up/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/dialog_engines/dlg_engines/dlg_engines.dlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_engines/dlg_engines/dlg_engines.dlg -------------------------------------------------------------------------------- /apps/basic_channel/dialog_engines/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_engines/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/dialog_engines/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_engines/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/dialog_goodbye/dlg_goodbye/dlg_goodbye.dlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_goodbye/dlg_goodbye/dlg_goodbye.dlg -------------------------------------------------------------------------------- /apps/basic_channel/dialog_goodbye/goToSleepAld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_goodbye/goToSleepAld.py -------------------------------------------------------------------------------- /apps/basic_channel/dialog_goodbye/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_goodbye/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/dialog_goodbye/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_goodbye/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/dialog_hello/dlg_hello/dlg_hello.dlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_hello/dlg_hello/dlg_hello.dlg -------------------------------------------------------------------------------- /apps/basic_channel/dialog_hello/dlg_hello/dlg_hello_enu.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_hello/dlg_hello/dlg_hello_enu.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_hello/dlg_hello/dlg_hello_frf.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_hello/dlg_hello/dlg_hello_frf.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_hello/dlg_hello/dlg_hello_ged.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_hello/dlg_hello/dlg_hello_ged.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_hello/dlg_hello/dlg_hello_iti.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_hello/dlg_hello/dlg_hello_iti.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_hello/dlg_hello/dlg_hello_jpj.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_hello/dlg_hello/dlg_hello_jpj.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_hello/dlg_hello/dlg_hello_spe.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_hello/dlg_hello/dlg_hello_spe.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_hello/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_hello/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/dialog_hello/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_hello/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/dialog_help/dlg_help/dlg_help.dlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_help/dlg_help/dlg_help.dlg -------------------------------------------------------------------------------- /apps/basic_channel/dialog_help/dlg_help/dlg_help_enu.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_help/dlg_help/dlg_help_enu.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_help/dlg_help/dlg_help_frf.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_help/dlg_help/dlg_help_frf.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_help/dlg_help/dlg_help_ged.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_help/dlg_help/dlg_help_ged.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_help/dlg_help/dlg_help_iti.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_help/dlg_help/dlg_help_iti.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_help/dlg_help/dlg_help_jpj.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_help/dlg_help/dlg_help_jpj.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_help/dlg_help/dlg_help_spe.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_help/dlg_help/dlg_help_spe.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_help/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_help/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/dialog_help/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_help/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/dialog_how_are_you/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_how_are_you/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/dialog_how_are_you/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_how_are_you/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/dialog_how_are_you/user_mood.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_how_are_you/user_mood.py -------------------------------------------------------------------------------- /apps/basic_channel/dialog_impossible_moves/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_impossible_moves/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/dialog_impossible_moves/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_impossible_moves/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/dialog_internet_connection/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_internet_connection/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/dialog_internet_connection/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_internet_connection/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/dialog_lexicon/.metadata: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/basic_channel/dialog_lexicon/ALSetDateTime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_lexicon/ALSetDateTime.py -------------------------------------------------------------------------------- /apps/basic_channel/dialog_lexicon/behavior_1/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_lexicon/behavior_1/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/dialog_lexicon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_lexicon/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/dialog_lexicon/lexicon.dlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_lexicon/lexicon.dlg -------------------------------------------------------------------------------- /apps/basic_channel/dialog_lexicon/lexicon_enu.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_lexicon/lexicon_enu.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_lexicon/lexicon_frf.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_lexicon/lexicon_frf.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_lexicon/lexicon_ged.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_lexicon/lexicon_ged.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_lexicon/lexicon_geography.dlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_lexicon/lexicon_geography.dlg -------------------------------------------------------------------------------- /apps/basic_channel/dialog_lexicon/lexicon_geography_enu.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_lexicon/lexicon_geography_enu.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_lexicon/lexicon_geography_frf.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_lexicon/lexicon_geography_frf.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_lexicon/lexicon_iti.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_lexicon/lexicon_iti.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_lexicon/lexicon_jpj.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_lexicon/lexicon_jpj.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_lexicon/lexicon_names.dlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_lexicon/lexicon_names.dlg -------------------------------------------------------------------------------- /apps/basic_channel/dialog_lexicon/lexicon_names_enu.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_lexicon/lexicon_names_enu.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_lexicon/lexicon_names_frf.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_lexicon/lexicon_names_frf.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_lexicon/lexicon_spe.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_lexicon/lexicon_spe.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_lexicon/lexicon_time.dlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_lexicon/lexicon_time.dlg -------------------------------------------------------------------------------- /apps/basic_channel/dialog_lexicon/lexicon_time_enu.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_lexicon/lexicon_time_enu.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_lexicon/lexicon_time_frf.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_lexicon/lexicon_time_frf.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_lexicon/lexicon_time_jpj.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_lexicon/lexicon_time_jpj.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_lexicon/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_lexicon/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/dialog_lexicon/resetVariable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_lexicon/resetVariable.py -------------------------------------------------------------------------------- /apps/basic_channel/dialog_lexicon/skin_B2B/skin_B2B.dlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_lexicon/skin_B2B/skin_B2B.dlg -------------------------------------------------------------------------------- /apps/basic_channel/dialog_lexicon/skin_B2B/skin_B2B_enu.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_lexicon/skin_B2B/skin_B2B_enu.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_lexicon/skin_B2B/skin_B2B_frf.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_lexicon/skin_B2B/skin_B2B_frf.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_lexicon/skin_B2B/skin_B2B_jpj.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_lexicon/skin_B2B/skin_B2B_jpj.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_lexicon/skin_B2C/skin_B2C.dlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_lexicon/skin_B2C/skin_B2C.dlg -------------------------------------------------------------------------------- /apps/basic_channel/dialog_lexicon/skin_B2C/skin_B2C_jpj.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_lexicon/skin_B2C/skin_B2C_jpj.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_manage_events/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_manage_events/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/dialog_manage_events/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_manage_events/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/dialog_move_arms/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_move_arms/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/dialog_move_hands/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_move_hands/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/dialog_move_hands/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_move_hands/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/dialog_move_head/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_move_head/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/dialog_move_head/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_move_head/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/dialog_posture/bhv_crouch/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_posture/bhv_crouch/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/dialog_posture/bhv_sit_down/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_posture/bhv_sit_down/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/dialog_posture/bhv_stand_up/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_posture/bhv_stand_up/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/dialog_posture/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_posture/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/dialog_posture/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_posture/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/dialog_reflex/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_reflex/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/dialog_reflex/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_reflex/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/dialog_reflex/reflex/reflex.dlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_reflex/reflex/reflex.dlg -------------------------------------------------------------------------------- /apps/basic_channel/dialog_reflex/reflex/reflex_enu.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_reflex/reflex/reflex_enu.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_reflex/reflex/reflex_frf.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_reflex/reflex/reflex_frf.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_reflex/reflex/reflex_jpj.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_reflex/reflex/reflex_jpj.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_reflex/test/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_reflex/test/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/dialog_reflex/test/kpilogsend/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_reflex/test/kpilogsend/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/dialog_reflex_engaged/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_reflex_engaged/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/dialog_reflex_engaged/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_reflex_engaged/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/dialog_robot_characteristics/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_robot_characteristics/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/dialog_robot_characteristics/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_robot_characteristics/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/dialog_robot_origins/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_robot_origins/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/dialog_robot_origins/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_robot_origins/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/dialog_robot_relationships/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_robot_relationships/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/dialog_robot_relationships/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_robot_relationships/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/dialog_robots/dlg_asimov/dlg_asimov.dlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_robots/dlg_asimov/dlg_asimov.dlg -------------------------------------------------------------------------------- /apps/basic_channel/dialog_robots/dlg_asimov/dlg_asimov_enu.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_robots/dlg_asimov/dlg_asimov_enu.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_robots/dlg_asimov/dlg_asimov_frf.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_robots/dlg_asimov/dlg_asimov_frf.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_robots/dlg_asimov/dlg_asimov_ged.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_robots/dlg_asimov/dlg_asimov_ged.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_robots/dlg_asimov/dlg_asimov_iti.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_robots/dlg_asimov/dlg_asimov_iti.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_robots/dlg_asimov/dlg_asimov_spe.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_robots/dlg_asimov/dlg_asimov_spe.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_robots/dlg_robots/dlg_robots.dlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_robots/dlg_robots/dlg_robots.dlg -------------------------------------------------------------------------------- /apps/basic_channel/dialog_robots/dlg_robots/dlg_robots_enu.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_robots/dlg_robots/dlg_robots_enu.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_robots/dlg_robots/dlg_robots_frf.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_robots/dlg_robots/dlg_robots_frf.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_robots/dlg_robots/dlg_robots_ged.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_robots/dlg_robots/dlg_robots_ged.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_robots/dlg_robots/dlg_robots_iti.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_robots/dlg_robots/dlg_robots_iti.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_robots/dlg_robots/dlg_robots_spe.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_robots/dlg_robots/dlg_robots_spe.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_robots/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_robots/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/dialog_robots/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_robots/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/dialog_robots/manifest.xml~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_robots/manifest.xml~ -------------------------------------------------------------------------------- /apps/basic_channel/dialog_say_something_else/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_say_something_else/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/dialog_say_something_else/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_say_something_else/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/dialog_set_offset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_set_offset/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/dialog_set_offset/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_set_offset/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/dialog_shutdown/bhr_reboot/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_shutdown/bhr_reboot/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/dialog_shutdown/bhr_shutdown/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_shutdown/bhr_shutdown/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/dialog_shutdown/html/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_shutdown/html/css/style.css -------------------------------------------------------------------------------- /apps/basic_channel/dialog_shutdown/html/indexen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_shutdown/html/indexen.html -------------------------------------------------------------------------------- /apps/basic_channel/dialog_shutdown/html/indexfr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_shutdown/html/indexfr.html -------------------------------------------------------------------------------- /apps/basic_channel/dialog_shutdown/html/indexjp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_shutdown/html/indexjp.html -------------------------------------------------------------------------------- /apps/basic_channel/dialog_shutdown/html/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_shutdown/html/js/main.js -------------------------------------------------------------------------------- /apps/basic_channel/dialog_shutdown/html/js/main.js~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_shutdown/html/js/main.js~ -------------------------------------------------------------------------------- /apps/basic_channel/dialog_shutdown/html/js/robotutils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_shutdown/html/js/robotutils.js -------------------------------------------------------------------------------- /apps/basic_channel/dialog_shutdown/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_shutdown/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/dialog_shutdown/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_shutdown/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/dialog_stop_talking/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_stop_talking/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/dialog_stop_talking/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_stop_talking/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/dialog_store/dlg_ade/dlg_ade.dlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_store/dlg_ade/dlg_ade.dlg -------------------------------------------------------------------------------- /apps/basic_channel/dialog_store/dlg_ade/dlg_ade_enu.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_store/dlg_ade/dlg_ade_enu.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_store/dlg_ade/dlg_ade_frf.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_store/dlg_ade/dlg_ade_frf.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_store/dlg_ade/dlg_ade_jpj.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_store/dlg_ade/dlg_ade_jpj.top -------------------------------------------------------------------------------- /apps/basic_channel/dialog_store/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_store/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/dialog_store/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_store/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/dialog_switch_language/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_switch_language/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/dialog_switch_language/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_switch_language/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/dialog_thank_you/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_thank_you/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/dialog_thank_you/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_thank_you/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/dialog_touch/SFX_Fart2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_touch/SFX_Fart2.ogg -------------------------------------------------------------------------------- /apps/basic_channel/dialog_touch/headster_egg/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_touch/headster_egg/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/dialog_touch/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_touch/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/dialog_touch/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_touch/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/dialog_what_can_you_do/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_what_can_you_do/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/dialog_what_can_you_do/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/dialog_what_can_you_do/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/push-recovered/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/push-recovered/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/push-recovered/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/push-recovered/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/push-recovered/solitary/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/push-recovered/solitary/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/robots_advanced/.metadata: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/basic_channel/robots_advanced/html/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/robots_advanced/html/css/bootstrap.css -------------------------------------------------------------------------------- /apps/basic_channel/robots_advanced/html/css/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/robots_advanced/html/css/font.css -------------------------------------------------------------------------------- /apps/basic_channel/robots_advanced/html/css/modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/robots_advanced/html/css/modal.css -------------------------------------------------------------------------------- /apps/basic_channel/robots_advanced/html/css/ng-table.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/robots_advanced/html/css/ng-table.min.css -------------------------------------------------------------------------------- /apps/basic_channel/robots_advanced/html/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/robots_advanced/html/favicon.ico -------------------------------------------------------------------------------- /apps/basic_channel/robots_advanced/html/img/BigROBOT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/robots_advanced/html/img/BigROBOT.png -------------------------------------------------------------------------------- /apps/basic_channel/robots_advanced/html/img/load-120px.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/robots_advanced/html/img/load-120px.gif -------------------------------------------------------------------------------- /apps/basic_channel/robots_advanced/html/img/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/robots_advanced/html/img/print.png -------------------------------------------------------------------------------- /apps/basic_channel/robots_advanced/html/img/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/robots_advanced/html/img/reload.png -------------------------------------------------------------------------------- /apps/basic_channel/robots_advanced/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/robots_advanced/html/index.html -------------------------------------------------------------------------------- /apps/basic_channel/robots_advanced/html/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/robots_advanced/html/js/app.js -------------------------------------------------------------------------------- /apps/basic_channel/robots_advanced/html/js/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/robots_advanced/html/js/config.js -------------------------------------------------------------------------------- /apps/basic_channel/robots_advanced/html/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/robots_advanced/html/js/main.js -------------------------------------------------------------------------------- /apps/basic_channel/robots_advanced/html/js/states/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/robots_advanced/html/js/states/core.js -------------------------------------------------------------------------------- /apps/basic_channel/robots_advanced/html/languages/Chinese.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /apps/basic_channel/robots_advanced/html/languages/English.json: -------------------------------------------------------------------------------- 1 | { 2 | "ROBOT_ADVANCED": "Advanced configuration" 3 | } 4 | -------------------------------------------------------------------------------- /apps/basic_channel/robots_advanced/html/languages/French.json: -------------------------------------------------------------------------------- 1 | { 2 | "ROBOT_ADVANCED": "Configuration avancée" 3 | } 4 | -------------------------------------------------------------------------------- /apps/basic_channel/robots_advanced/html/languages/Japanese.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /apps/basic_channel/robots_advanced/html/modules/hardware/css/base.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/basic_channel/robots_advanced/html/modules/memory/css/base.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/basic_channel/robots_advanced/html/modules/settings/css/base.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/basic_channel/robots_advanced/html/modules/tethering/css/base.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/basic_channel/robots_advanced/html/partials/app/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/robots_advanced/html/partials/app/base.html -------------------------------------------------------------------------------- /apps/basic_channel/robots_advanced/html/partials/app/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/robots_advanced/html/partials/app/home.html -------------------------------------------------------------------------------- /apps/basic_channel/robots_advanced/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/robots_advanced/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/robots_advanced/robots_advanced.pml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/robots_advanced/robots_advanced.pml -------------------------------------------------------------------------------- /apps/basic_channel/run_dialog_dev/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/run_dialog_dev/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/run_dialog_dev/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/run_dialog_dev/html/index.html -------------------------------------------------------------------------------- /apps/basic_channel/run_dialog_dev/html/scripts/page_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/run_dialog_dev/html/scripts/page_index.js -------------------------------------------------------------------------------- /apps/basic_channel/run_dialog_dev/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/run_dialog_dev/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/run_dialog_dev/init/SLMChinese4.5.fcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/run_dialog_dev/init/SLMChinese4.5.fcf -------------------------------------------------------------------------------- /apps/basic_channel/run_dialog_dev/init/SLMEnglish.fcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/run_dialog_dev/init/SLMEnglish.fcf -------------------------------------------------------------------------------- /apps/basic_channel/run_dialog_dev/init/SLMEnglish4.5.fcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/run_dialog_dev/init/SLMEnglish4.5.fcf -------------------------------------------------------------------------------- /apps/basic_channel/run_dialog_dev/init/SLMFrench.fcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/run_dialog_dev/init/SLMFrench.fcf -------------------------------------------------------------------------------- /apps/basic_channel/run_dialog_dev/init/SLMFrench4.5.fcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/run_dialog_dev/init/SLMFrench4.5.fcf -------------------------------------------------------------------------------- /apps/basic_channel/run_dialog_dev/init/SLMJapanese.fcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/run_dialog_dev/init/SLMJapanese.fcf -------------------------------------------------------------------------------- /apps/basic_channel/run_dialog_dev/init/SLMJapanese4.5.fcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/run_dialog_dev/init/SLMJapanese4.5.fcf -------------------------------------------------------------------------------- /apps/basic_channel/run_dialog_dev/init/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/run_dialog_dev/init/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/run_dialog_dev/init/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/run_dialog_dev/init/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/run_dialog_dev/init/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/run_dialog_dev/init/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/run_dialog_dev/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/run_dialog_dev/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/run_dialog_dev/smartcompiler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/run_dialog_dev/smartcompiler -------------------------------------------------------------------------------- /apps/basic_channel/semantic-library/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/semantic-library/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/semantic-library/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/semantic-library/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/signs-and-feedback/bin/signs_and_feedback: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/signs-and-feedback/bin/signs_and_feedback -------------------------------------------------------------------------------- /apps/basic_channel/signs-and-feedback/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/signs-and-feedback/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/signs-and-feedback/python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/signs-and-feedback/python -------------------------------------------------------------------------------- /apps/basic_channel/sleep-reactions/.metadata: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/basic_channel/sleep-reactions/RandomHand/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/sleep-reactions/RandomHand/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/sleep-reactions/TouchHand/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/sleep-reactions/TouchHand/behavior.xar -------------------------------------------------------------------------------- /apps/basic_channel/sleep-reactions/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/sleep-reactions/icon.png -------------------------------------------------------------------------------- /apps/basic_channel/sleep-reactions/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/sleep-reactions/manifest.xml -------------------------------------------------------------------------------- /apps/basic_channel/sleep-reactions/sleep-reactions.pml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/basic_channel/sleep-reactions/sleep-reactions.pml -------------------------------------------------------------------------------- /apps/custom_apps/comco19/Quiz.pml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/Quiz.pml -------------------------------------------------------------------------------- /apps/custom_apps/comco19/comco/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/comco/behavior.xar -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/.eslintrc -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/.htmlhintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/.htmlhintrc -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/css/styles.css -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/dosis-v14-latin-200.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/dosis-v14-latin-200.eot -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/dosis-v14-latin-200.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/dosis-v14-latin-200.svg -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/dosis-v14-latin-200.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/dosis-v14-latin-200.ttf -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/dosis-v14-latin-200.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/dosis-v14-latin-200.woff -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/dosis-v14-latin-200.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/dosis-v14-latin-200.woff2 -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/dosis-v14-latin-300.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/dosis-v14-latin-300.eot -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/dosis-v14-latin-300.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/dosis-v14-latin-300.svg -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/dosis-v14-latin-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/dosis-v14-latin-300.ttf -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/dosis-v14-latin-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/dosis-v14-latin-300.woff -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/dosis-v14-latin-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/dosis-v14-latin-300.woff2 -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/dosis-v14-latin-500.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/dosis-v14-latin-500.eot -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/dosis-v14-latin-500.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/dosis-v14-latin-500.svg -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/dosis-v14-latin-500.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/dosis-v14-latin-500.ttf -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/dosis-v14-latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/dosis-v14-latin-500.woff -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/dosis-v14-latin-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/dosis-v14-latin-500.woff2 -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/dosis-v14-latin-600.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/dosis-v14-latin-600.eot -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/dosis-v14-latin-600.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/dosis-v14-latin-600.svg -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/dosis-v14-latin-600.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/dosis-v14-latin-600.ttf -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/dosis-v14-latin-600.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/dosis-v14-latin-600.woff -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/dosis-v14-latin-600.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/dosis-v14-latin-600.woff2 -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/dosis-v14-latin-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/dosis-v14-latin-700.eot -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/dosis-v14-latin-700.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/dosis-v14-latin-700.svg -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/dosis-v14-latin-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/dosis-v14-latin-700.ttf -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/dosis-v14-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/dosis-v14-latin-700.woff -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/dosis-v14-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/dosis-v14-latin-700.woff2 -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/dosis-v14-latin-800.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/dosis-v14-latin-800.eot -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/dosis-v14-latin-800.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/dosis-v14-latin-800.svg -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/dosis-v14-latin-800.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/dosis-v14-latin-800.ttf -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/dosis-v14-latin-800.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/dosis-v14-latin-800.woff -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/dosis-v14-latin-800.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/dosis-v14-latin-800.woff2 -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/muli-v16-latin-200.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/muli-v16-latin-200.eot -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/muli-v16-latin-200.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/muli-v16-latin-200.svg -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/muli-v16-latin-200.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/muli-v16-latin-200.ttf -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/muli-v16-latin-200.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/muli-v16-latin-200.woff -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/muli-v16-latin-200.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/muli-v16-latin-200.woff2 -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/muli-v16-latin-300.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/muli-v16-latin-300.eot -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/muli-v16-latin-300.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/muli-v16-latin-300.svg -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/muli-v16-latin-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/muli-v16-latin-300.ttf -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/muli-v16-latin-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/muli-v16-latin-300.woff -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/muli-v16-latin-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/muli-v16-latin-300.woff2 -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/muli-v16-latin-600.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/muli-v16-latin-600.eot -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/muli-v16-latin-600.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/muli-v16-latin-600.svg -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/muli-v16-latin-600.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/muli-v16-latin-600.ttf -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/muli-v16-latin-600.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/muli-v16-latin-600.woff -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/muli-v16-latin-600.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/muli-v16-latin-600.woff2 -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/muli-v16-latin-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/muli-v16-latin-700.eot -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/muli-v16-latin-700.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/muli-v16-latin-700.svg -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/muli-v16-latin-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/muli-v16-latin-700.ttf -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/muli-v16-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/muli-v16-latin-700.woff -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/muli-v16-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/muli-v16-latin-700.woff2 -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/muli-v16-latin-800.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/muli-v16-latin-800.eot -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/muli-v16-latin-800.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/muli-v16-latin-800.svg -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/muli-v16-latin-800.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/muli-v16-latin-800.ttf -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/muli-v16-latin-800.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/muli-v16-latin-800.woff -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/muli-v16-latin-800.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/muli-v16-latin-800.woff2 -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/muli-v16-latin-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/muli-v16-latin-900.eot -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/muli-v16-latin-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/muli-v16-latin-900.svg -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/muli-v16-latin-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/muli-v16-latin-900.ttf -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/muli-v16-latin-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/muli-v16-latin-900.woff -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/muli-v16-latin-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/muli-v16-latin-900.woff2 -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/muli-v16-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/muli-v16-latin-regular.eot -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/muli-v16-latin-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/muli-v16-latin-regular.svg -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/fonts/muli-v16-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/fonts/muli-v16-latin-regular.ttf -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/images/airplane-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/images/airplane-2.png -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/images/airplane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/images/airplane.png -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/images/brain-logo-big-3-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/images/brain-logo-big-3-3.png -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/images/copy.png -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/images/default.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/images/default.cur -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/images/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/images/default.png -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/images/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/images/facebook.png -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/images/google-scholar-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/images/google-scholar-logo.png -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/images/hand.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/images/hand.cur -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/images/hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/images/hand.png -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/images/people/colin_phillips.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/images/people/colin_phillips.jpg -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/images/people/dieuwke_hupkes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/images/people/dieuwke_hupkes.jpg -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/images/people/james_dicarlo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/images/people/james_dicarlo.jpg -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/images/people/karl_friston.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/images/people/karl_friston.jpg -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/images/people/karl_friston2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/images/people/karl_friston2.jpg -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/images/people/roger_levy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/images/people/roger_levy.jpg -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/images/people/roger_levy2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/images/people/roger_levy2.jpg -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/images/people/terry_stewart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/images/people/terry_stewart.jpg -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/images/people/terry_stewart2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/images/people/terry_stewart2.jpg -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/images/people/tim_kietzmann.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/images/people/tim_kietzmann.jpg -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/images/people/will_monroe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/images/people/will_monroe.jpg -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/images/people/will_monroe2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/images/people/will_monroe2.jpg -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/images/pepper-illustration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/images/pepper-illustration.png -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/images/pepper-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/images/pepper-outline.png -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/images/poster-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/images/poster-outline.png -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/images/research-gate-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/images/research-gate-logo.png -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/images/tile13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/images/tile13.png -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/images/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/images/twitter.png -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/images/website.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/images/website.png -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/images/woman-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/images/woman-outline.png -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/index.html -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/js/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/js/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/js/qi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/js/qi.js -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/js/script.js -------------------------------------------------------------------------------- /apps/custom_apps/comco19/html/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/html/package-lock.json -------------------------------------------------------------------------------- /apps/custom_apps/comco19/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/icon.png -------------------------------------------------------------------------------- /apps/custom_apps/comco19/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/manifest.xml -------------------------------------------------------------------------------- /apps/custom_apps/comco19/translations/translation_de_DE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/translations/translation_de_DE.ts -------------------------------------------------------------------------------- /apps/custom_apps/comco19/translations/translation_en_US.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/comco19/translations/translation_en_US.ts -------------------------------------------------------------------------------- /apps/custom_apps/drinkquiz/Quiz/Quiz.pml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/drinkquiz/Quiz/Quiz.pml -------------------------------------------------------------------------------- /apps/custom_apps/drinkquiz/Quiz/html/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/drinkquiz/Quiz/html/.eslintrc -------------------------------------------------------------------------------- /apps/custom_apps/drinkquiz/Quiz/html/.htmlhintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/drinkquiz/Quiz/html/.htmlhintrc -------------------------------------------------------------------------------- /apps/custom_apps/drinkquiz/Quiz/html/cogsci.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/drinkquiz/Quiz/html/cogsci.tsv -------------------------------------------------------------------------------- /apps/custom_apps/drinkquiz/Quiz/html/css/materialize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/drinkquiz/Quiz/html/css/materialize.css -------------------------------------------------------------------------------- /apps/custom_apps/drinkquiz/Quiz/html/css/materialize.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/drinkquiz/Quiz/html/css/materialize.min.css -------------------------------------------------------------------------------- /apps/custom_apps/drinkquiz/Quiz/html/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/drinkquiz/Quiz/html/css/style.css -------------------------------------------------------------------------------- /apps/custom_apps/drinkquiz/Quiz/html/deutsch.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/drinkquiz/Quiz/html/deutsch.tsv -------------------------------------------------------------------------------- /apps/custom_apps/drinkquiz/Quiz/html/digitalisierung.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/drinkquiz/Quiz/html/digitalisierung.tsv -------------------------------------------------------------------------------- /apps/custom_apps/drinkquiz/Quiz/html/fonts/roboto/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/drinkquiz/Quiz/html/fonts/roboto/LICENSE.txt -------------------------------------------------------------------------------- /apps/custom_apps/drinkquiz/Quiz/html/fonts/ubuntu/UFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/drinkquiz/Quiz/html/fonts/ubuntu/UFL.txt -------------------------------------------------------------------------------- /apps/custom_apps/drinkquiz/Quiz/html/ibm.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/drinkquiz/Quiz/html/ibm.tsv -------------------------------------------------------------------------------- /apps/custom_apps/drinkquiz/Quiz/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/drinkquiz/Quiz/html/index.html -------------------------------------------------------------------------------- /apps/custom_apps/drinkquiz/Quiz/html/js/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/drinkquiz/Quiz/html/js/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /apps/custom_apps/drinkquiz/Quiz/html/js/materialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/drinkquiz/Quiz/html/js/materialize.js -------------------------------------------------------------------------------- /apps/custom_apps/drinkquiz/Quiz/html/js/materialize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/drinkquiz/Quiz/html/js/materialize.min.js -------------------------------------------------------------------------------- /apps/custom_apps/drinkquiz/Quiz/html/js/qi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/drinkquiz/Quiz/html/js/qi.js -------------------------------------------------------------------------------- /apps/custom_apps/drinkquiz/Quiz/html/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/drinkquiz/Quiz/html/js/script.js -------------------------------------------------------------------------------- /apps/custom_apps/drinkquiz/Quiz/html/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/drinkquiz/Quiz/html/package-lock.json -------------------------------------------------------------------------------- /apps/custom_apps/drinkquiz/Quiz/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/drinkquiz/Quiz/icon.png -------------------------------------------------------------------------------- /apps/custom_apps/drinkquiz/Quiz/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/drinkquiz/Quiz/manifest.xml -------------------------------------------------------------------------------- /apps/custom_apps/drinkquiz/Quiz/quiz/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/drinkquiz/Quiz/quiz/behavior.xar -------------------------------------------------------------------------------- /apps/custom_apps/quiz/behavior_1/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/behavior_1/behavior.xar -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/.eslintrc -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/cogsci.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/cogsci.tsv -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/css/MaterialIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/css/MaterialIcons-Regular.ttf -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/css/MaterialIcons-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/css/MaterialIcons-Regular.woff -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/css/MaterialIcons-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/css/MaterialIcons-Regular.woff2 -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/css/materialize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/css/materialize.css -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/css/materialize.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/css/materialize.min.css -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/css/style.css -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/deutsch.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/deutsch.tsv -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/MaterialIcons-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/MaterialIcons-Regular.woff2 -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/roboto/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/roboto/LICENSE.txt -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/roboto/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/roboto/Roboto-Black.ttf -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/roboto/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/roboto/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/roboto/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/roboto/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/roboto/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/roboto/Roboto-Italic.ttf -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/roboto/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/roboto/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/roboto/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/roboto/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/roboto/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/roboto/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/roboto/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/roboto/Roboto-Thin.woff -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/roboto/Roboto-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/roboto/Roboto-Thin.woff2 -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/roboto/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/roboto/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/ubuntu/UFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/ubuntu/UFL.txt -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/ubuntu/Ubuntu-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/ubuntu/Ubuntu-Bold.ttf -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/ubuntu/Ubuntu-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/ubuntu/Ubuntu-Bold.woff -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/ubuntu/Ubuntu-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/ubuntu/Ubuntu-Bold.woff2 -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/ubuntu/Ubuntu-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/ubuntu/Ubuntu-BoldItalic.ttf -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/ubuntu/Ubuntu-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/ubuntu/Ubuntu-BoldItalic.woff -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/ubuntu/Ubuntu-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/ubuntu/Ubuntu-Italic.ttf -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/ubuntu/Ubuntu-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/ubuntu/Ubuntu-Italic.woff -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/ubuntu/Ubuntu-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/ubuntu/Ubuntu-Italic.woff2 -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/ubuntu/Ubuntu-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/ubuntu/Ubuntu-Light.ttf -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/ubuntu/Ubuntu-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/ubuntu/Ubuntu-Light.woff -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/ubuntu/Ubuntu-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/ubuntu/Ubuntu-Light.woff2 -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/ubuntu/Ubuntu-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/ubuntu/Ubuntu-LightItalic.ttf -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/ubuntu/Ubuntu-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/ubuntu/Ubuntu-Medium.ttf -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/ubuntu/Ubuntu-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/ubuntu/Ubuntu-Medium.woff -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/ubuntu/Ubuntu-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/ubuntu/Ubuntu-Medium.woff2 -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/ubuntu/Ubuntu-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/ubuntu/Ubuntu-Regular.ttf -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/ubuntu/Ubuntu-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/ubuntu/Ubuntu-Regular.woff -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/fonts/ubuntu/Ubuntu-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/fonts/ubuntu/Ubuntu-Regular.woff2 -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/ibm.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/ibm.tsv -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/index.html -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/js/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/js/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/js/materialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/js/materialize.js -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/js/materialize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/js/materialize.min.js -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/js/qi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/js/qi.js -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/js/script.js -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/node_modules.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/node_modules.zip -------------------------------------------------------------------------------- /apps/custom_apps/quiz/html/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/html/package-lock.json -------------------------------------------------------------------------------- /apps/custom_apps/quiz/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/icon.png -------------------------------------------------------------------------------- /apps/custom_apps/quiz/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/manifest.xml -------------------------------------------------------------------------------- /apps/custom_apps/quiz/quiz_test.pml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz/quiz_test.pml -------------------------------------------------------------------------------- /apps/custom_apps/quiz2/Quiz/Quiz.pml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz2/Quiz/Quiz.pml -------------------------------------------------------------------------------- /apps/custom_apps/quiz2/Quiz/html/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz2/Quiz/html/.eslintrc -------------------------------------------------------------------------------- /apps/custom_apps/quiz2/Quiz/html/.htmlhintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz2/Quiz/html/.htmlhintrc -------------------------------------------------------------------------------- /apps/custom_apps/quiz2/Quiz/html/cogsci.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz2/Quiz/html/cogsci.tsv -------------------------------------------------------------------------------- /apps/custom_apps/quiz2/Quiz/html/css/MaterialIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz2/Quiz/html/css/MaterialIcons-Regular.ttf -------------------------------------------------------------------------------- /apps/custom_apps/quiz2/Quiz/html/css/materialize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz2/Quiz/html/css/materialize.css -------------------------------------------------------------------------------- /apps/custom_apps/quiz2/Quiz/html/css/materialize.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz2/Quiz/html/css/materialize.min.css -------------------------------------------------------------------------------- /apps/custom_apps/quiz2/Quiz/html/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz2/Quiz/html/css/style.css -------------------------------------------------------------------------------- /apps/custom_apps/quiz2/Quiz/html/deutsch.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz2/Quiz/html/deutsch.tsv -------------------------------------------------------------------------------- /apps/custom_apps/quiz2/Quiz/html/digitalisierung.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz2/Quiz/html/digitalisierung.tsv -------------------------------------------------------------------------------- /apps/custom_apps/quiz2/Quiz/html/fonts/roboto/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz2/Quiz/html/fonts/roboto/LICENSE.txt -------------------------------------------------------------------------------- /apps/custom_apps/quiz2/Quiz/html/fonts/roboto/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz2/Quiz/html/fonts/roboto/Roboto-Black.ttf -------------------------------------------------------------------------------- /apps/custom_apps/quiz2/Quiz/html/fonts/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz2/Quiz/html/fonts/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /apps/custom_apps/quiz2/Quiz/html/fonts/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz2/Quiz/html/fonts/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /apps/custom_apps/quiz2/Quiz/html/fonts/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz2/Quiz/html/fonts/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /apps/custom_apps/quiz2/Quiz/html/fonts/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz2/Quiz/html/fonts/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /apps/custom_apps/quiz2/Quiz/html/fonts/roboto/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz2/Quiz/html/fonts/roboto/Roboto-Thin.woff -------------------------------------------------------------------------------- /apps/custom_apps/quiz2/Quiz/html/fonts/ubuntu/UFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz2/Quiz/html/fonts/ubuntu/UFL.txt -------------------------------------------------------------------------------- /apps/custom_apps/quiz2/Quiz/html/fonts/ubuntu/Ubuntu-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz2/Quiz/html/fonts/ubuntu/Ubuntu-Bold.ttf -------------------------------------------------------------------------------- /apps/custom_apps/quiz2/Quiz/html/fonts/ubuntu/Ubuntu-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz2/Quiz/html/fonts/ubuntu/Ubuntu-Bold.woff -------------------------------------------------------------------------------- /apps/custom_apps/quiz2/Quiz/html/fonts/ubuntu/Ubuntu-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz2/Quiz/html/fonts/ubuntu/Ubuntu-Light.ttf -------------------------------------------------------------------------------- /apps/custom_apps/quiz2/Quiz/html/ibm.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz2/Quiz/html/ibm.tsv -------------------------------------------------------------------------------- /apps/custom_apps/quiz2/Quiz/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz2/Quiz/html/index.html -------------------------------------------------------------------------------- /apps/custom_apps/quiz2/Quiz/html/js/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz2/Quiz/html/js/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /apps/custom_apps/quiz2/Quiz/html/js/materialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz2/Quiz/html/js/materialize.js -------------------------------------------------------------------------------- /apps/custom_apps/quiz2/Quiz/html/js/materialize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz2/Quiz/html/js/materialize.min.js -------------------------------------------------------------------------------- /apps/custom_apps/quiz2/Quiz/html/js/qi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz2/Quiz/html/js/qi.js -------------------------------------------------------------------------------- /apps/custom_apps/quiz2/Quiz/html/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz2/Quiz/html/js/script.js -------------------------------------------------------------------------------- /apps/custom_apps/quiz2/Quiz/html/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz2/Quiz/html/package-lock.json -------------------------------------------------------------------------------- /apps/custom_apps/quiz2/Quiz/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz2/Quiz/icon.png -------------------------------------------------------------------------------- /apps/custom_apps/quiz2/Quiz/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz2/Quiz/manifest.xml -------------------------------------------------------------------------------- /apps/custom_apps/quiz2/Quiz/quiz/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz2/Quiz/quiz/behavior.xar -------------------------------------------------------------------------------- /apps/custom_apps/quiz2/Quiz/translations/translation_de_DE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz2/Quiz/translations/translation_de_DE.ts -------------------------------------------------------------------------------- /apps/custom_apps/quiz2/Quiz/translations/translation_en_US.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/custom_apps/quiz2/Quiz/translations/translation_en_US.ts -------------------------------------------------------------------------------- /apps/transfer_learning/label_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/transfer_learning/label_image.py -------------------------------------------------------------------------------- /apps/transfer_learning/retrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/transfer_learning/retrain.py -------------------------------------------------------------------------------- /apps/transfer_learning/run_command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/apps/transfer_learning/run_command.txt -------------------------------------------------------------------------------- /docs/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/LICENSE.txt -------------------------------------------------------------------------------- /docs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/README.txt -------------------------------------------------------------------------------- /docs/SS2019.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/SS2019.html -------------------------------------------------------------------------------- /docs/WS2018.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/WS2018.html -------------------------------------------------------------------------------- /docs/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/assets/.DS_Store -------------------------------------------------------------------------------- /docs/assets/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/assets/css/font-awesome.min.css -------------------------------------------------------------------------------- /docs/assets/css/images/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/assets/css/images/arrow.svg -------------------------------------------------------------------------------- /docs/assets/css/images/bars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/assets/css/images/bars.svg -------------------------------------------------------------------------------- /docs/assets/css/images/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/assets/css/images/close.svg -------------------------------------------------------------------------------- /docs/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/assets/css/main.css -------------------------------------------------------------------------------- /docs/assets/css/noscript.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/assets/css/noscript.css -------------------------------------------------------------------------------- /docs/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /docs/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/assets/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/assets/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/assets/js/breakpoints.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/assets/js/breakpoints.min.js -------------------------------------------------------------------------------- /docs/assets/js/browser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/assets/js/browser.min.js -------------------------------------------------------------------------------- /docs/assets/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/assets/js/jquery.min.js -------------------------------------------------------------------------------- /docs/assets/js/jquery.scrollex.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/assets/js/jquery.scrollex.min.js -------------------------------------------------------------------------------- /docs/assets/js/jquery.scrolly.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/assets/js/jquery.scrolly.min.js -------------------------------------------------------------------------------- /docs/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/assets/js/main.js -------------------------------------------------------------------------------- /docs/assets/js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/assets/js/util.js -------------------------------------------------------------------------------- /docs/assets/sass/libs/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/assets/sass/libs/_breakpoints.scss -------------------------------------------------------------------------------- /docs/assets/sass/libs/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/assets/sass/libs/_functions.scss -------------------------------------------------------------------------------- /docs/assets/sass/libs/_html-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/assets/sass/libs/_html-grid.scss -------------------------------------------------------------------------------- /docs/assets/sass/libs/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/assets/sass/libs/_mixins.scss -------------------------------------------------------------------------------- /docs/assets/sass/libs/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/assets/sass/libs/_vars.scss -------------------------------------------------------------------------------- /docs/assets/sass/libs/_vendor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/assets/sass/libs/_vendor.scss -------------------------------------------------------------------------------- /docs/assets/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/assets/sass/main.scss -------------------------------------------------------------------------------- /docs/assets/sass/noscript.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/assets/sass/noscript.scss -------------------------------------------------------------------------------- /docs/convcontextmem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/convcontextmem.html -------------------------------------------------------------------------------- /docs/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/images/.DS_Store -------------------------------------------------------------------------------- /docs/images/Map_Original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/images/Map_Original.png -------------------------------------------------------------------------------- /docs/images/Map_corrected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/images/Map_corrected.png -------------------------------------------------------------------------------- /docs/images/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/images/banner.jpg -------------------------------------------------------------------------------- /docs/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/images/banner.png -------------------------------------------------------------------------------- /docs/images/flowchart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/images/flowchart.jpg -------------------------------------------------------------------------------- /docs/images/pic01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/images/pic01.jpg -------------------------------------------------------------------------------- /docs/images/pic02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/images/pic02.jpg -------------------------------------------------------------------------------- /docs/images/pic03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/images/pic03.jpg -------------------------------------------------------------------------------- /docs/images/pic04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/images/pic04.jpg -------------------------------------------------------------------------------- /docs/images/pic05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/images/pic05.jpg -------------------------------------------------------------------------------- /docs/images/rosgraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/images/rosgraph.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/robovision.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/robovision.html -------------------------------------------------------------------------------- /docs/spatialnav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/spatialnav.html -------------------------------------------------------------------------------- /docs/speechrecogn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cognitive-Robotics-UOS/open-pepper-project/HEAD/docs/speechrecogn.html --------------------------------------------------------------------------------