aboutsummaryrefslogtreecommitdiff
path: root/graphics/makehuman
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2007-04-17 22:10:38 +0000
committerMartin Wilke <miwi@FreeBSD.org>2007-04-17 22:10:38 +0000
commita996d53f26dfaa737c4d069fe2a4607f82c0e23a (patch)
tree5601a23f1ec9dc4408856b06f72dbada66fec0e8 /graphics/makehuman
parentd27353999a8af3ad1dd69dd07ed5b9aed6be6b27 (diff)
downloadports-a996d53f26dfaa737c4d069fe2a4607f82c0e23a.tar.gz
ports-a996d53f26dfaa737c4d069fe2a4607f82c0e23a.zip
Notes
Diffstat (limited to 'graphics/makehuman')
-rw-r--r--graphics/makehuman/Makefile16
-rw-r--r--graphics/makehuman/distinfo6
-rw-r--r--graphics/makehuman/files/patch-src-io.c18
-rw-r--r--graphics/makehuman/files/patch-src-ui.c18
-rw-r--r--graphics/makehuman/pkg-plist8269
5 files changed, 7006 insertions, 1321 deletions
diff --git a/graphics/makehuman/Makefile b/graphics/makehuman/Makefile
index 464192bdd3fd..067df95c3693 100644
--- a/graphics/makehuman/Makefile
+++ b/graphics/makehuman/Makefile
@@ -6,30 +6,30 @@
#
PORTNAME= makehuman
-DISTVERSION= 0.8_beta
+DISTVERSION= 0.9
CATEGORIES= graphics
-MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
+MASTER_SITES= SF
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= amdmi3@amdmi3.ru
COMMENT= Application for parametrical modeling of 3D humanoid characters
-LIB_DEPENDS= glpng:${PORTSDIR}/graphics/glpng \
+LIB_DEPENDS= animorph.0:${PORTSDIR}/graphics/animorph \
+ mhgui.0:${PORTSDIR}/graphics/mhgui \
glut.4:${PORTSDIR}/graphics/libglut
GNU_CONFIGURE= yes
USE_GMAKE= yes
+USE_GNOME= pkgconfig
USE_GL= yes
-USE_X_PREFIX= yes
CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib" \
CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include"
post-patch:
- @${REINPLACE_CMD} -e 's|linux/||' ${WRKSRC}/src/io.h
- @${REINPLACE_CMD} -e '/^packagedocdir=/ s|doc|share/doc|' ${WRKSRC}/configure
- @${REINPLACE_CMD} -e '/^makehumandocdir/ s|/doc/makehuman|/share/doc/makehuman|' ${WRKSRC}/Makefile.in
-
+ @${REINPLACE_CMD} -e '/^makehuman_pixmapsdir =/ s|pixmaps/makehuman|makehuman/pixmaps|' ${WRKSRC}/pixmaps/Makefile.in
+ @${REINPLACE_CMD} -e '/^packagepixmapsdir=/ s|pixmaps/\$${PACKAGE}|$${PACKAGE}/pixmaps|' ${WRKSRC}/configure
+ @${REINPLACE_CMD} -e '/^makehumandocdir =/ s|doc/|share/doc/|' ${WRKSRC}/Makefile.in
.if defined(NOPORTDOCS)
@${REINPLACE_CMD} -e '/^install-data-am:/ s|install-makehumandocDATA||' ${WRKSRC}/Makefile.in
.endif
diff --git a/graphics/makehuman/distinfo b/graphics/makehuman/distinfo
index ba003886c6b2..d193af8f2184 100644
--- a/graphics/makehuman/distinfo
+++ b/graphics/makehuman/distinfo
@@ -1,3 +1,3 @@
-MD5 (makehuman-0.8_beta.tar.gz) = 0c400e485605e2c12d024371baaed196
-SHA256 (makehuman-0.8_beta.tar.gz) = 49491b28de2fae801bd9175df054d5135e375fde7a09eb00430451d6a24f5623
-SIZE (makehuman-0.8_beta.tar.gz) = 10630968
+MD5 (makehuman-0.9.tar.gz) = c544e01b253fe20916bbd632b3c47b35
+SHA256 (makehuman-0.9.tar.gz) = 2d67a9a7ee59dff3572df8463e2783aed035c6e2acce5f6256d94fd25955860f
+SIZE (makehuman-0.9.tar.gz) = 39272236
diff --git a/graphics/makehuman/files/patch-src-io.c b/graphics/makehuman/files/patch-src-io.c
deleted file mode 100644
index c5acca40c047..000000000000
--- a/graphics/makehuman/files/patch-src-io.c
+++ /dev/null
@@ -1,18 +0,0 @@
---- src/io.c.orig Mon Mar 6 12:18:00 2006
-+++ src/io.c Mon Mar 6 12:19:50 2006
-@@ -409,6 +409,7 @@
- util = strtok (NULL, token);
- value = atof(util);
-
-+ {
- #ifdef HAVE_CONFIG_H
- char tmp[MAX_PATH];
- strcpy (tmp, PACKAGE_DATA_DIR"/");
-@@ -422,6 +423,7 @@
- display();
- }
- //printf("Eccoci\n");
-+ }
-
- }
-
diff --git a/graphics/makehuman/files/patch-src-ui.c b/graphics/makehuman/files/patch-src-ui.c
deleted file mode 100644
index 4e5a65805cea..000000000000
--- a/graphics/makehuman/files/patch-src-ui.c
+++ /dev/null
@@ -1,18 +0,0 @@
---- src/ui.c.orig Mon Mar 6 12:20:35 2006
-+++ src/ui.c Mon Mar 6 12:21:13 2006
-@@ -502,6 +502,7 @@
- while(Panels[i].Button[c].id != -1)
- {
- Panels[i].Button[c].id = d;
-+ {
- #ifdef HAVE_CONFIG_H
- char tmp[MAX_PATH];
- strcpy (tmp, PACKAGE_DATA_DIR"/");
-@@ -510,6 +511,7 @@
- #else
- if(Panels[i].Button[c].image) Panels[i].Button[c].texture = load_texture(Panels[i].Button[c].image);
- #endif
-+ }
- c++;
- d++;
- }
diff --git a/graphics/makehuman/pkg-plist b/graphics/makehuman/pkg-plist
index 257da0c3e687..c909f80e5767 100644
--- a/graphics/makehuman/pkg-plist
+++ b/graphics/makehuman/pkg-plist
@@ -1,990 +1,4306 @@
bin/makehuman
-%%DATADIR%%/UI/anatomy/abdomen.png
-%%DATADIR%%/UI/anatomy/brows.png
-%%DATADIR%%/UI/anatomy/chin.png
-%%DATADIR%%/UI/anatomy/chin_jaw.png
-%%DATADIR%%/UI/anatomy/forehead.png
-%%DATADIR%%/UI/anatomy/fullhead.png
-%%DATADIR%%/UI/anatomy/l_cheek.png
-%%DATADIR%%/UI/anatomy/l_ear.png
-%%DATADIR%%/UI/anatomy/l_eye.png
-%%DATADIR%%/UI/anatomy/l_foot.png
-%%DATADIR%%/UI/anatomy/l_hand.png
-%%DATADIR%%/UI/anatomy/l_lower_arm.png
-%%DATADIR%%/UI/anatomy/l_lower_leg.png
-%%DATADIR%%/UI/anatomy/l_shoulder.png
-%%DATADIR%%/UI/anatomy/l_upper_arm.png
-%%DATADIR%%/UI/anatomy/l_upper_leg.png
-%%DATADIR%%/UI/anatomy/mouth.png
-%%DATADIR%%/UI/anatomy/neck.png
-%%DATADIR%%/UI/anatomy/nose.png
-%%DATADIR%%/UI/anatomy/pelvis.png
-%%DATADIR%%/UI/anatomy/r_cheek.png
-%%DATADIR%%/UI/anatomy/r_chin.png
-%%DATADIR%%/UI/anatomy/r_ear.png
-%%DATADIR%%/UI/anatomy/r_eye.png
-%%DATADIR%%/UI/anatomy/r_foot.png
-%%DATADIR%%/UI/anatomy/r_hand.png
-%%DATADIR%%/UI/anatomy/r_lower_arm.png
-%%DATADIR%%/UI/anatomy/r_lower_leg.png
-%%DATADIR%%/UI/anatomy/r_shoulder.png
-%%DATADIR%%/UI/anatomy/r_upper_arm.png
-%%DATADIR%%/UI/anatomy/r_upper_leg.png
-%%DATADIR%%/UI/anatomy/r_upperarm.png
-%%DATADIR%%/UI/anatomy/torso.png
-%%DATADIR%%/UI/images/activetab.png
-%%DATADIR%%/UI/images/age.png
-%%DATADIR%%/UI/images/anim.png
-%%DATADIR%%/UI/images/aqsis.png
-%%DATADIR%%/UI/images/axis.png
-%%DATADIR%%/UI/images/bSetting.png
-%%DATADIR%%/UI/images/characters.png
-%%DATADIR%%/UI/images/emptytab.png
-%%DATADIR%%/UI/images/exit.png
-%%DATADIR%%/UI/images/fullscreen.png
-%%DATADIR%%/UI/images/gender.png
-%%DATADIR%%/UI/images/grid.png
-%%DATADIR%%/UI/images/height.png
-%%DATADIR%%/UI/images/logo.png
-%%DATADIR%%/UI/images/muscle.png
-%%DATADIR%%/UI/images/no.png
-%%DATADIR%%/UI/images/obj.png
-%%DATADIR%%/UI/images/pixie.png
-%%DATADIR%%/UI/images/reset.png
-%%DATADIR%%/UI/images/splash.png
-%%DATADIR%%/UI/images/weight.png
-%%DATADIR%%/UI/images/wip.png
-%%DATADIR%%/UI/images/yes.png
-%%DATADIR%%/UI/ns_anatomy/abdomen.png
-%%DATADIR%%/UI/ns_anatomy/brows.png
-%%DATADIR%%/UI/ns_anatomy/chin.png
-%%DATADIR%%/UI/ns_anatomy/chin_jaw.png
-%%DATADIR%%/UI/ns_anatomy/forehead.png
-%%DATADIR%%/UI/ns_anatomy/fullhead.png
-%%DATADIR%%/UI/ns_anatomy/l_cheek.png
-%%DATADIR%%/UI/ns_anatomy/l_ear.png
-%%DATADIR%%/UI/ns_anatomy/l_eye.png
-%%DATADIR%%/UI/ns_anatomy/l_foot.png
-%%DATADIR%%/UI/ns_anatomy/l_hand.png
-%%DATADIR%%/UI/ns_anatomy/l_lower_arm.png
-%%DATADIR%%/UI/ns_anatomy/l_lower_leg.png
-%%DATADIR%%/UI/ns_anatomy/l_shoulder.png
-%%DATADIR%%/UI/ns_anatomy/l_upper_arm.png
-%%DATADIR%%/UI/ns_anatomy/l_upper_leg.png
-%%DATADIR%%/UI/ns_anatomy/mouth.png
-%%DATADIR%%/UI/ns_anatomy/neck.png
-%%DATADIR%%/UI/ns_anatomy/nose.png
-%%DATADIR%%/UI/ns_anatomy/pelvis.png
-%%DATADIR%%/UI/ns_anatomy/r_cheek.png
-%%DATADIR%%/UI/ns_anatomy/r_chin.png
-%%DATADIR%%/UI/ns_anatomy/r_ear.png
-%%DATADIR%%/UI/ns_anatomy/r_eye.png
-%%DATADIR%%/UI/ns_anatomy/r_foot.png
-%%DATADIR%%/UI/ns_anatomy/r_hand.png
-%%DATADIR%%/UI/ns_anatomy/r_lower_arm.png
-%%DATADIR%%/UI/ns_anatomy/r_lower_leg.png
-%%DATADIR%%/UI/ns_anatomy/r_shoulder.png
-%%DATADIR%%/UI/ns_anatomy/r_upper_arm.png
-%%DATADIR%%/UI/ns_anatomy/r_upper_leg.png
-%%DATADIR%%/UI/ns_anatomy/torso.png
-%%DATADIR%%/UI/tgimg/abdomen/abdomen_muscular.png
-%%DATADIR%%/UI/tgimg/abdomen/abdomen_scrawny.png
-%%DATADIR%%/UI/tgimg/abdomen/belly_out.png
-%%DATADIR%%/UI/tgimg/abdomen/no_belly_button.png
-%%DATADIR%%/UI/tgimg/abdomen/waist_diameter_max.png
-%%DATADIR%%/UI/tgimg/age/6_years_old.png
-%%DATADIR%%/UI/tgimg/age/70_years_old_WIP.png
-%%DATADIR%%/UI/tgimg/brow_ridge/brow_receding.png
-%%DATADIR%%/UI/tgimg/brow_ridge/brow_ridge_center_down.png
-%%DATADIR%%/UI/tgimg/brow_ridge/brow_ridge_center_up.png
-%%DATADIR%%/UI/tgimg/brow_ridge/brow_ridge_outer_down.png
-%%DATADIR%%/UI/tgimg/brow_ridge/brow_ridge_outer_up.png
-%%DATADIR%%/UI/tgimg/brow_ridge/brow_ridge_protuding.png
-%%DATADIR%%/UI/tgimg/brow_ridge/brow_ridge_smooth.png
-%%DATADIR%%/UI/tgimg/brow_ridge/brow_ridge_up_sharp.png
-%%DATADIR%%/UI/tgimg/brow_ridge/brow_ridge_up_smooth.png
-%%DATADIR%%/UI/tgimg/chin_jaw/chin_backward.png
-%%DATADIR%%/UI/tgimg/chin_jaw/chin_jutting.png
-%%DATADIR%%/UI/tgimg/chin_jaw/chin_recessed.png
-%%DATADIR%%/UI/tgimg/chin_jaw/chin_relax.png
-%%DATADIR%%/UI/tgimg/chin_jaw/chin_second.png
-%%DATADIR%%/UI/tgimg/chin_jaw/chin_separated.png
-%%DATADIR%%/UI/tgimg/chin_jaw/chin_shallow.png
-%%DATADIR%%/UI/tgimg/chin_jaw/chin_short.png
-%%DATADIR%%/UI/tgimg/chin_jaw/chin_small.png
-%%DATADIR%%/UI/tgimg/chin_jaw/chin_wide.png
-%%DATADIR%%/UI/tgimg/chin_jaw/jaw_angle.png
-%%DATADIR%%/UI/tgimg/chin_jaw/jaw_convex.png
-%%DATADIR%%/UI/tgimg/chin_jaw/jaw_large.png
-%%DATADIR%%/UI/tgimg/chin_jaw/jaw_round.png
-%%DATADIR%%/UI/tgimg/chin_jaw/jaw_round_vertical.png
-%%DATADIR%%/UI/tgimg/chin_jaw/jaw_square.png
-%%DATADIR%%/UI/tgimg/chin_jaw/jaw_thin.png
-%%DATADIR%%/UI/tgimg/chin_jaw/jaw_triangular.png
-%%DATADIR%%/UI/tgimg/chin_jaw/jaw_wide.png
-%%DATADIR%%/UI/tgimg/eyes_movements/CAT_EYES.png
-%%DATADIR%%/UI/tgimg/eyes_movements/HUMAN_EYES.png
-%%DATADIR%%/UI/tgimg/eyes_movements/LEFT_EYE_DOWN.png
-%%DATADIR%%/UI/tgimg/eyes_movements/LEFT_EYE_IN.png
-%%DATADIR%%/UI/tgimg/eyes_movements/LEFT_EYE_OUT.png
-%%DATADIR%%/UI/tgimg/eyes_movements/LEFT_EYE_UP.png
-%%DATADIR%%/UI/tgimg/eyes_movements/LEFT_PUPIL_SIZE.png
-%%DATADIR%%/UI/tgimg/eyes_movements/RIGHT_EYE_DOWN.png
-%%DATADIR%%/UI/tgimg/eyes_movements/RIGHT_EYE_IN.png
-%%DATADIR%%/UI/tgimg/eyes_movements/RIGHT_EYE_OUT.png
-%%DATADIR%%/UI/tgimg/eyes_movements/RIGHT_EYE_UP.png
-%%DATADIR%%/UI/tgimg/eyes_movements/RIGHT_PUPIL_SIZE.png
-%%DATADIR%%/UI/tgimg/forehead/forehead_back.png
-%%DATADIR%%/UI/tgimg/forehead/forehead_forward.png
-%%DATADIR%%/UI/tgimg/forehead/forehead_narrow.png
-%%DATADIR%%/UI/tgimg/forehead/forehead_short.png
-%%DATADIR%%/UI/tgimg/forehead/forehead_tall.png
-%%DATADIR%%/UI/tgimg/forehead/forehead_wide.png
-%%DATADIR%%/UI/tgimg/forehead/forehead_wrinkle.png
-%%DATADIR%%/UI/tgimg/forehead/temple_wide.png
-%%DATADIR%%/UI/tgimg/gender/medium_female.png
-%%DATADIR%%/UI/tgimg/head/head_baby.png
-%%DATADIR%%/UI/tgimg/head/head_ear_sellion_depth.png
-%%DATADIR%%/UI/tgimg/head/head_face_angle_max.png
-%%DATADIR%%/UI/tgimg/head/head_face_angle_min.png
-%%DATADIR%%/UI/tgimg/head/head_height_max.png
-%%DATADIR%%/UI/tgimg/head/head_height_min.png
-%%DATADIR%%/UI/tgimg/head/head_length_max.png
-%%DATADIR%%/UI/tgimg/head/head_length_min.png
-%%DATADIR%%/UI/tgimg/head/head_lower_height_max.png
-%%DATADIR%%/UI/tgimg/head/head_lower_height_min.png
-%%DATADIR%%/UI/tgimg/head/head_ovoidal_inv.png
-%%DATADIR%%/UI/tgimg/head/head_pentagonoidal.png
-%%DATADIR%%/UI/tgimg/head/head_rectangular.png
-%%DATADIR%%/UI/tgimg/head/head_rhomboidal.png
-%%DATADIR%%/UI/tgimg/head/head_round.png
-%%DATADIR%%/UI/tgimg/head/head_skull_birsoid.png
-%%DATADIR%%/UI/tgimg/head/head_skull_ellipsoid.png
-%%DATADIR%%/UI/tgimg/head/head_skull_pentagonoid.png
-%%DATADIR%%/UI/tgimg/head/head_skull_romboid.png
-%%DATADIR%%/UI/tgimg/head/head_skull_spheroid.png
-%%DATADIR%%/UI/tgimg/head/head_skull_spheroid2.png
-%%DATADIR%%/UI/tgimg/head/head_trapezioidal.png
-%%DATADIR%%/UI/tgimg/head/head_trapezioidal_inv.png
-%%DATADIR%%/UI/tgimg/head/head_upper_height_max.png
-%%DATADIR%%/UI/tgimg/head/head_upper_height_min.png
-%%DATADIR%%/UI/tgimg/head/head_width_max.png
-%%DATADIR%%/UI/tgimg/head/head_width_min.png
-%%DATADIR%%/UI/tgimg/l_cheek/l_cheeckbone_protuding_2.png
-%%DATADIR%%/UI/tgimg/l_cheek/l_cheek_flabby.png
-%%DATADIR%%/UI/tgimg/l_cheek/l_cheek_hollow.png
-%%DATADIR%%/UI/tgimg/l_cheek/l_cheek_round.png
-%%DATADIR%%/UI/tgimg/l_cheek/l_cheek_smooth.png
-%%DATADIR%%/UI/tgimg/l_cheek/l_cheek_wrinkle.png
-%%DATADIR%%/UI/tgimg/l_cheek/l_cheekbone_down.png
-%%DATADIR%%/UI/tgimg/l_cheek/l_cheekbone_protuding.png
-%%DATADIR%%/UI/tgimg/l_cheek/l_cheekbone_shallow.png
-%%DATADIR%%/UI/tgimg/l_cheek/l_cheekbone_thin.png
-%%DATADIR%%/UI/tgimg/l_cheek/l_cheekbone_up.png
-%%DATADIR%%/UI/tgimg/l_cheek/l_cheekbone_wide.png
-%%DATADIR%%/UI/tgimg/l_ear/l_ear_backward.png
-%%DATADIR%%/UI/tgimg/l_ear/l_ear_big.png
-%%DATADIR%%/UI/tgimg/l_ear/l_ear_flap.png
-%%DATADIR%%/UI/tgimg/l_ear/l_ear_forward.png
-%%DATADIR%%/UI/tgimg/l_ear/l_ear_half_wings.png
-%%DATADIR%%/UI/tgimg/l_ear/l_ear_height.png
-%%DATADIR%%/UI/tgimg/l_ear/l_ear_lobe_big.png
-%%DATADIR%%/UI/tgimg/l_ear/l_ear_lobe_small.png
-%%DATADIR%%/UI/tgimg/l_ear/l_ear_low.png
-%%DATADIR%%/UI/tgimg/l_ear/l_ear_quod.png
-%%DATADIR%%/UI/tgimg/l_ear/l_ear_small.png
-%%DATADIR%%/UI/tgimg/l_ear/l_ear_wind.png
-%%DATADIR%%/UI/tgimg/l_ear/l_earlobe_height_max.png
-%%DATADIR%%/UI/tgimg/l_ear/l_earlobe_height_min.png
-%%DATADIR%%/UI/tgimg/l_ear/l_earlobe_width_max.png
-%%DATADIR%%/UI/tgimg/l_eye/l_eye_big.png
-%%DATADIR%%/UI/tgimg/l_eye/l_eye_cat.png
-%%DATADIR%%/UI/tgimg/l_eye/l_eye_center_height_max.png
-%%DATADIR%%/UI/tgimg/l_eye/l_eye_distance_max.png
-%%DATADIR%%/UI/tgimg/l_eye/l_eye_distance_min.png
-%%DATADIR%%/UI/tgimg/l_eye/l_eye_down.png
-%%DATADIR%%/UI/tgimg/l_eye/l_eye_external_corner_down.png
-%%DATADIR%%/UI/tgimg/l_eye/l_eye_external_corner_in.png
-%%DATADIR%%/UI/tgimg/l_eye/l_eye_external_corner_out.png
-%%DATADIR%%/UI/tgimg/l_eye/l_eye_external_corner_up.png
-%%DATADIR%%/UI/tgimg/l_eye/l_eye_external_height_max.png
-%%DATADIR%%/UI/tgimg/l_eye/l_eye_fold.png
-%%DATADIR%%/UI/tgimg/l_eye/l_eye_internal_corner_down.png
-%%DATADIR%%/UI/tgimg/l_eye/l_eye_internal_corner_in.png
-%%DATADIR%%/UI/tgimg/l_eye/l_eye_internal_corner_out.png
-%%DATADIR%%/UI/tgimg/l_eye/l_eye_internal_corner_up.png
-%%DATADIR%%/UI/tgimg/l_eye/l_eye_internal_height_max.png
-%%DATADIR%%/UI/tgimg/l_eye/l_eye_overhang.png
-%%DATADIR%%/UI/tgimg/l_eye/l_eye_small.png
-%%DATADIR%%/UI/tgimg/l_eye/l_eye_up.png
-%%DATADIR%%/UI/tgimg/l_eye/l_eye_wrinkles.png
-%%DATADIR%%/UI/tgimg/l_eye/l_eyelashes_curve.png
-%%DATADIR%%/UI/tgimg/l_eye/l_eyelashes_long.png
-%%DATADIR%%/UI/tgimg/l_eye/l_eyelashes_none.png
-%%DATADIR%%/UI/tgimg/l_eye/l_eyelids_up.png
-%%DATADIR%%/UI/tgimg/l_foot/l_ankle_big.png
-%%DATADIR%%/UI/tgimg/l_foot/l_ankle_little.png
-%%DATADIR%%/UI/tgimg/l_foot/l_foot_fingers_long.png
-%%DATADIR%%/UI/tgimg/l_foot/l_foot_height_max.png
-%%DATADIR%%/UI/tgimg/l_foot/l_foot_height_min.png
-%%DATADIR%%/UI/tgimg/l_foot/l_foot_short.png
-%%DATADIR%%/UI/tgimg/l_foot/l_foot_sizez_min.png
-%%DATADIR%%/UI/tgimg/l_foot/l_foot_width_max.png
-%%DATADIR%%/UI/tgimg/l_foot/l_foot_width_min.png
-%%DATADIR%%/UI/tgimg/l_foot/l_heel_none.png
-%%DATADIR%%/UI/tgimg/l_hand/l_hand_sizex_min.png
-%%DATADIR%%/UI/tgimg/l_hand/l_hand_sizey_min.png
-%%DATADIR%%/UI/tgimg/l_hand/l_hand_sizez_min.png
-%%DATADIR%%/UI/tgimg/l_hand/l_nail_sizex_min.png
-%%DATADIR%%/UI/tgimg/l_lower_arm/l_lower_arm_fat.png
-%%DATADIR%%/UI/tgimg/l_lower_arm/l_lower_arm_long.png
-%%DATADIR%%/UI/tgimg/l_lower_arm/l_lower_arm_muscular.png
-%%DATADIR%%/UI/tgimg/l_lower_arm/l_lower_arm_scrawny.png
-%%DATADIR%%/UI/tgimg/l_lower_arm/l_lower_arm_short.png
-%%DATADIR%%/UI/tgimg/l_lower_arm/l_lower_arm_sizey_min.png
-%%DATADIR%%/UI/tgimg/l_lower_arm/l_lower_arm_sizez.png
-%%DATADIR%%/UI/tgimg/l_lower_arm/l_lower_arm_sizez_min.png
-%%DATADIR%%/UI/tgimg/l_lower_leg/l_calf_muscular.png
-%%DATADIR%%/UI/tgimg/l_lower_leg/l_femoris_muscular.png
-%%DATADIR%%/UI/tgimg/l_lower_leg/l_leg_x_deform.png
-%%DATADIR%%/UI/tgimg/l_lower_leg/l_lower_leg_fat.png
-%%DATADIR%%/UI/tgimg/l_lower_leg/l_lower_leg_long.png
-%%DATADIR%%/UI/tgimg/l_lower_leg/l_lower_leg_scrawny.png
-%%DATADIR%%/UI/tgimg/l_lower_leg/l_lower_leg_sizex_min.png
-%%DATADIR%%/UI/tgimg/l_lower_leg/l_lower_leg_sizey_min.png
-%%DATADIR%%/UI/tgimg/l_lower_leg/l_lower_leg_sizez_min.png
-%%DATADIR%%/UI/tgimg/l_lower_leg/l_quadricipes_muscular.png
-%%DATADIR%%/UI/tgimg/l_lower_leg/l_upper_leg_fat.png
-%%DATADIR%%/UI/tgimg/l_lower_leg/l_upper_leg_long.png
-%%DATADIR%%/UI/tgimg/l_lower_leg/l_upper_leg_scrawny.png
-%%DATADIR%%/UI/tgimg/l_shoulder/l_deltoid_muscular.png
-%%DATADIR%%/UI/tgimg/l_shoulder/l_deltoid_scrawny.png
-%%DATADIR%%/UI/tgimg/l_shoulder/l_shoulder_out.png
-%%DATADIR%%/UI/tgimg/l_shoulder/l_shoulder_sizex.png
-%%DATADIR%%/UI/tgimg/l_upper_arm/l_biceps_muscular.png
-%%DATADIR%%/UI/tgimg/l_upper_arm/l_triceps.png
-%%DATADIR%%/UI/tgimg/l_upper_arm/l_upper_arm_fat.png
-%%DATADIR%%/UI/tgimg/l_upper_arm/l_upper_arm_flabby.png
-%%DATADIR%%/UI/tgimg/l_upper_arm/l_upper_arm_long.png
-%%DATADIR%%/UI/tgimg/l_upper_arm/l_upper_arm_scrawny.png
-%%DATADIR%%/UI/tgimg/l_upper_arm/l_upper_arm_short.png
-%%DATADIR%%/UI/tgimg/l_upper_arm/l_upper_arm_sizey.png
-%%DATADIR%%/UI/tgimg/l_upper_arm/l_upper_arm_sizey_min.png
-%%DATADIR%%/UI/tgimg/l_upper_arm/l_upper_arm_sizez_min.png
-%%DATADIR%%/UI/tgimg/l_upper_arm/l_upperarm_fat.png
-%%DATADIR%%/UI/tgimg/l_upper_arm/torso_sizey_min.png
-%%DATADIR%%/UI/tgimg/l_upper_arm/torso_sizez_min.png
-%%DATADIR%%/UI/tgimg/l_upper_leg/l_femoris_muscular.png
-%%DATADIR%%/UI/tgimg/l_upper_leg/l_quadricipes_muscular.png
-%%DATADIR%%/UI/tgimg/l_upper_leg/l_upper_leg_fat.png
-%%DATADIR%%/UI/tgimg/l_upper_leg/l_upper_leg_long.png
-%%DATADIR%%/UI/tgimg/l_upper_leg/l_upper_leg_scrawny.png
-%%DATADIR%%/UI/tgimg/l_upper_leg/l_upper_leg_sizex_min.png
-%%DATADIR%%/UI/tgimg/l_upper_leg/l_upper_leg_sizey_min.png
-%%DATADIR%%/UI/tgimg/l_upper_leg/l_upper_leg_sizez_min.png
-%%DATADIR%%/UI/tgimg/mees_builders/CHEEK_RAISER_LEFT.png
-%%DATADIR%%/UI/tgimg/mees_builders/CHEEK_RAISER_RIGHT.png
-%%DATADIR%%/UI/tgimg/mees_builders/CHIN_RAISER.png
-%%DATADIR%%/UI/tgimg/mees_builders/DIMPLER_LEFT.png
-%%DATADIR%%/UI/tgimg/mees_builders/DIMPLER_RIGHT.png
-%%DATADIR%%/UI/tgimg/mees_builders/EYEBROW_LOWERER_INNER_LEFT.png
-%%DATADIR%%/UI/tgimg/mees_builders/EYEBROW_LOWERER_INNER_RIGHT.png
-%%DATADIR%%/UI/tgimg/mees_builders/EYEBROW_LOWERER_LEFT.png
-%%DATADIR%%/UI/tgimg/mees_builders/EYEBROW_LOWERER_RIGHT.png
-%%DATADIR%%/UI/tgimg/mees_builders/EYEBROW_RAISER_INNER_LEFT.png
-%%DATADIR%%/UI/tgimg/mees_builders/EYEBROW_RAISER_INNER_RIGHT.png
-%%DATADIR%%/UI/tgimg/mees_builders/EYEBROW_RAISER_OUTER_LEFT.png
-%%DATADIR%%/UI/tgimg/mees_builders/EYEBROW_RAISER_OUTER_RIGHT.png
-%%DATADIR%%/UI/tgimg/mees_builders/EYE_CLOSURE_LEFT.png
-%%DATADIR%%/UI/tgimg/mees_builders/EYE_CLOSURE_RIGHT.png
-%%DATADIR%%/UI/tgimg/mees_builders/LID_RAISER_UPPER_LEFT.png
-%%DATADIR%%/UI/tgimg/mees_builders/LID_RAISER_UPPER_RIGHT.png
-%%DATADIR%%/UI/tgimg/mees_builders/LID_TIGHTENER_LEFT.png
-%%DATADIR%%/UI/tgimg/mees_builders/LID_TIGHTENER_RIGHT.png
-%%DATADIR%%/UI/tgimg/mees_builders/LIPS_CLOSE.png
-%%DATADIR%%/UI/tgimg/mees_builders/LIPS_TIGHTEN.png
-%%DATADIR%%/UI/tgimg/mees_builders/LIP_CORNER_DEPRESSOR_LEFT.PNG
-%%DATADIR%%/UI/tgimg/mees_builders/LIP_CORNER_DEPRESSOR_RIGHT.PNG
-%%DATADIR%%/UI/tgimg/mees_builders/LIP_CORNER_PULLER_LEFT.png
-%%DATADIR%%/UI/tgimg/mees_builders/LIP_CORNER_PULLER_RIGHT.png
-%%DATADIR%%/UI/tgimg/mees_builders/LIP_CORNER_PULLER_UP_LEFT.png
-%%DATADIR%%/UI/tgimg/mees_builders/LIP_CORNER_PULLER_UP_RIGHT.png
-%%DATADIR%%/UI/tgimg/mees_builders/LIP_PRESSOR.png
-%%DATADIR%%/UI/tgimg/mees_builders/LIP_SHARP_CORNER_PULLER_LEFT.png
-%%DATADIR%%/UI/tgimg/mees_builders/LIP_SHARP_CORNER_PULLER_RIGHT.png
-%%DATADIR%%/UI/tgimg/mees_builders/LIP_STRETCHER_LEFT.png
-%%DATADIR%%/UI/tgimg/mees_builders/LIP_STRETCHER_RIGHT.png
-%%DATADIR%%/UI/tgimg/mees_builders/LOWER_LIP_DEPRESSOR.png
-%%DATADIR%%/UI/tgimg/mees_builders/NASOLABIAL_FURROW_DEEPENER.png
-%%DATADIR%%/UI/tgimg/mees_builders/NOSTRIL_COMPRESSOR.png
-%%DATADIR%%/UI/tgimg/mees_builders/NOSTRIL_DILATOR.png
-%%DATADIR%%/UI/tgimg/mees_builders/UPPER_LIP_LEFT_RAISER.png
-%%DATADIR%%/UI/tgimg/mees_builders/UPPER_LIP_RAISER.png
-%%DATADIR%%/UI/tgimg/mees_builders/UPPER_LIP_RIGHT_RAISER.png
-%%DATADIR%%/UI/tgimg/mees_emotions/EMOTION_ANGER.Png
-%%DATADIR%%/UI/tgimg/mees_emotions/EMOTION_DISGUST.Png
-%%DATADIR%%/UI/tgimg/mees_emotions/EMOTION_FEAR.Png
-%%DATADIR%%/UI/tgimg/mees_emotions/EMOTION_JOY.Png
-%%DATADIR%%/UI/tgimg/mees_emotions/EMOTION_SADNESS.Png
-%%DATADIR%%/UI/tgimg/mees_emotions/EMOTION_SUPRISE.Png
-%%DATADIR%%/UI/tgimg/mees_emotions/EXAGGERATE_ANGER.png
-%%DATADIR%%/UI/tgimg/mees_emotions/EXAGGERATE_DISGUST.png
-%%DATADIR%%/UI/tgimg/mees_emotions/EXAGGERATE_FEAR.png
-%%DATADIR%%/UI/tgimg/mees_emotions/EXAGGERATE_JOY.png
-%%DATADIR%%/UI/tgimg/mees_emotions/EXAGGERATE_SADNESS.png
-%%DATADIR%%/UI/tgimg/mees_emotions/EXAGGERATE_SUPRISE.png
-%%DATADIR%%/UI/tgimg/mees_gesture/GESTURE_CHEEK_BLOW.png
-%%DATADIR%%/UI/tgimg/mees_gesture/GESTURE_EYE_WINK_LEFT.png
-%%DATADIR%%/UI/tgimg/mees_gesture/GESTURE_EYE_WINK_RIGHT.png
-%%DATADIR%%/UI/tgimg/mees_gesture/GESTURE_LIPS_FUNNEL.png
-%%DATADIR%%/UI/tgimg/mees_gesture/GESTURE_LIPS_PUCKER.png
-%%DATADIR%%/UI/tgimg/mees_gesture/GESTURE_LIPS_SUCK.png
-%%DATADIR%%/UI/tgimg/mees_gesture/GESTURE_LOWER_LIP_BITE.png
-%%DATADIR%%/UI/tgimg/mees_gesture/GESTURE_NOSE_WRINKLER.png
-%%DATADIR%%/UI/tgimg/mees_gesture/GESTURE_POUT.png
-%%DATADIR%%/UI/tgimg/mees_gesture/GESTURE_SNEER.png
-%%DATADIR%%/UI/tgimg/mees_gesture/GESTURE_TONGUE_IN_LEFT_CHEEK.png
-%%DATADIR%%/UI/tgimg/mees_gesture/GESTURE_TONGUE_IN_RIGHT_CHEEK.png
-%%DATADIR%%/UI/tgimg/mees_gesture/GESTURE_UPPER_LIP_BITE.png
-%%DATADIR%%/UI/tgimg/mees_movements/JAW_CLOSE.png
-%%DATADIR%%/UI/tgimg/mees_movements/JAW_DROP.png
-%%DATADIR%%/UI/tgimg/mees_movements/JAW_FORWARD.png
-%%DATADIR%%/UI/tgimg/mees_movements/JAW_ROTATE_LEFT.png
-%%DATADIR%%/UI/tgimg/mees_movements/JAW_ROTATE_RIGHT.png
-%%DATADIR%%/UI/tgimg/mees_movements/LEFT_EYE_DOWN.png
-%%DATADIR%%/UI/tgimg/mees_movements/LEFT_EYE_IN.png
-%%DATADIR%%/UI/tgimg/mees_movements/LEFT_EYE_OUT.png
-%%DATADIR%%/UI/tgimg/mees_movements/LEFT_EYE_UP.png
-%%DATADIR%%/UI/tgimg/mees_movements/MOUTH_STRETCH.png
-%%DATADIR%%/UI/tgimg/mees_movements/RIGHT_EYE_DOWN.png
-%%DATADIR%%/UI/tgimg/mees_movements/RIGHT_EYE_IN.png
-%%DATADIR%%/UI/tgimg/mees_movements/RIGHT_EYE_OUT.png
-%%DATADIR%%/UI/tgimg/mees_movements/RIGHT_EYE_UP.png
-%%DATADIR%%/UI/tgimg/mees_movements/TONGUE_CURL_DOWN.png
-%%DATADIR%%/UI/tgimg/mees_movements/TONGUE_CURL_UP.png
-%%DATADIR%%/UI/tgimg/mees_movements/TONGUE_DOWN.png
-%%DATADIR%%/UI/tgimg/mees_movements/TONGUE_FAT.png
-%%DATADIR%%/UI/tgimg/mees_movements/TONGUE_LEFT.png
-%%DATADIR%%/UI/tgimg/mees_movements/TONGUE_OUT.png
-%%DATADIR%%/UI/tgimg/mees_movements/TONGUE_RIGHT.png
-%%DATADIR%%/UI/tgimg/mees_movements/TONGUE_UP.png
-%%DATADIR%%/UI/tgimg/mouth/mouth_M_shape.png
-%%DATADIR%%/UI/tgimg/mouth/mouth_W_shape.png
-%%DATADIR%%/UI/tgimg/mouth/mouth_angle_down.png
-%%DATADIR%%/UI/tgimg/mouth/mouth_chin_distance_long.png
-%%DATADIR%%/UI/tgimg/mouth/mouth_chin_distance_short.png
-%%DATADIR%%/UI/tgimg/mouth/mouth_lips_deflated.png
-%%DATADIR%%/UI/tgimg/mouth/mouth_lips_inflated.png
-%%DATADIR%%/UI/tgimg/mouth/mouth_lower_lips_deflated.png
-%%DATADIR%%/UI/tgimg/mouth/mouth_lower_lips_inflated.png
-%%DATADIR%%/UI/tgimg/mouth/mouth_lower_lips_thin.png
-%%DATADIR%%/UI/tgimg/mouth/mouth_lower_lips_wide.png
-%%DATADIR%%/UI/tgimg/mouth/mouth_overbite.png
-%%DATADIR%%/UI/tgimg/mouth/mouth_thin.png
-%%DATADIR%%/UI/tgimg/mouth/mouth_underbite.png
-%%DATADIR%%/UI/tgimg/mouth/mouth_upper_lips_convex.png
-%%DATADIR%%/UI/tgimg/mouth/mouth_upper_lips_deflated.png
-%%DATADIR%%/UI/tgimg/mouth/mouth_upper_lips_inflated.png
-%%DATADIR%%/UI/tgimg/mouth/mouth_upper_lips_thin.png
-%%DATADIR%%/UI/tgimg/mouth/mouth_upper_lips_wide.png
-%%DATADIR%%/UI/tgimg/mouth/mouth_wide.png
-%%DATADIR%%/UI/tgimg/mouth/teeth_center_none.png
-%%DATADIR%%/UI/tgimg/mouth/teeth_center_out.png
-%%DATADIR%%/UI/tgimg/mouth/teeth_movex.png
-%%DATADIR%%/UI/tgimg/mouth/teeth_movey.png
-%%DATADIR%%/UI/tgimg/mouth/teeth_movez.png
-%%DATADIR%%/UI/tgimg/mouth/teeth_rot.png
-%%DATADIR%%/UI/tgimg/mouth/teeth_sizex_min.png
-%%DATADIR%%/UI/tgimg/mouth/teeth_sizey_min.png
-%%DATADIR%%/UI/tgimg/mouth/teeth_sizez_min.png
-%%DATADIR%%/UI/tgimg/mouth/teeth_up_movex.png
-%%DATADIR%%/UI/tgimg/mouth/teeth_up_movey.png
-%%DATADIR%%/UI/tgimg/mouth/teeth_up_movez.png
-%%DATADIR%%/UI/tgimg/mouth/teeth_vampire.png
-%%DATADIR%%/UI/tgimg/muscle/super_muscular.png
-%%DATADIR%%/UI/tgimg/nail_fantasy/nail_bifid.png
-%%DATADIR%%/UI/tgimg/nail_fantasy/nail_large.png
-%%DATADIR%%/UI/tgimg/nail_fantasy/nail_sharp.png
-%%DATADIR%%/UI/tgimg/neck/neck_fat.png
-%%DATADIR%%/UI/tgimg/neck/neck_old.png
-%%DATADIR%%/UI/tgimg/neck/neck_scrawny.png
-%%DATADIR%%/UI/tgimg/neck/neck_sizex_min.png
-%%DATADIR%%/UI/tgimg/neck/neck_sizey_min.png
-%%DATADIR%%/UI/tgimg/neck/neck_smooth.png
-%%DATADIR%%/UI/tgimg/no_img.png
-%%DATADIR%%/UI/tgimg/nose/nose_anime1.png
-%%DATADIR%%/UI/tgimg/nose/nose_base_narrow.png
-%%DATADIR%%/UI/tgimg/nose/nose_base_smooth.png
-%%DATADIR%%/UI/tgimg/nose/nose_base_wide.png
-%%DATADIR%%/UI/tgimg/nose/nose_bridge_down.png
-%%DATADIR%%/UI/tgimg/nose/nose_bridge_in.png
-%%DATADIR%%/UI/tgimg/nose/nose_bridge_narrow.png
-%%DATADIR%%/UI/tgimg/nose/nose_bridge_out.png
-%%DATADIR%%/UI/tgimg/nose/nose_bridge_up.png
-%%DATADIR%%/UI/tgimg/nose/nose_bridge_wide.png
-%%DATADIR%%/UI/tgimg/nose/nose_flat.png
-%%DATADIR%%/UI/tgimg/nose/nose_height_max.png
-%%DATADIR%%/UI/tgimg/nose/nose_height_min.png
-%%DATADIR%%/UI/tgimg/nose/nose_long.png
-%%DATADIR%%/UI/tgimg/nose/nose_mars_no_nostrill.png
-%%DATADIR%%/UI/tgimg/nose/nose_none.png
-%%DATADIR%%/UI/tgimg/nose/nose_none_no_nostril.png
-%%DATADIR%%/UI/tgimg/nose/nose_sellion_deep.png
-%%DATADIR%%/UI/tgimg/nose/nose_sellion_down.png
-%%DATADIR%%/UI/tgimg/nose/nose_sellion_narrow.png
-%%DATADIR%%/UI/tgimg/nose/nose_sellion_shallow.png
-%%DATADIR%%/UI/tgimg/nose/nose_sellion_up.png
-%%DATADIR%%/UI/tgimg/nose/nose_sellion_wide.png
-%%DATADIR%%/UI/tgimg/nose/nose_smooth.png
-%%DATADIR%%/UI/tgimg/nose/nose_thin.png
-%%DATADIR%%/UI/tgimg/nose/nose_tip_bulbous.png
-%%DATADIR%%/UI/tgimg/nose/nose_tip_down.png
-%%DATADIR%%/UI/tgimg/nose/nose_wide.png
-%%DATADIR%%/UI/tgimg/nose/nostrils_holes_small.png
-%%DATADIR%%/UI/tgimg/nose/nostrils_large.png
-%%DATADIR%%/UI/tgimg/nose/nostrils_small.png
-%%DATADIR%%/UI/tgimg/nose/nostrils_tilt_up.png
-%%DATADIR%%/UI/tgimg/nose/tip_narrow.png
-%%DATADIR%%/UI/tgimg/nose/tip_up.png
-%%DATADIR%%/UI/tgimg/nose/tip_wide.png
-%%DATADIR%%/UI/tgimg/nose_fantasy/nose_geom_cubic.png
-%%DATADIR%%/UI/tgimg/ns_head/head_cube.png
-%%DATADIR%%/UI/tgimg/ns_head/head_geom_bipyramid.png
-%%DATADIR%%/UI/tgimg/ns_head/head_geom_bisphere.png
-%%DATADIR%%/UI/tgimg/ns_head/head_geom_cone.png
-%%DATADIR%%/UI/tgimg/ns_head/head_geom_flat.png
-%%DATADIR%%/UI/tgimg/ns_head/head_geom_fractal.png
-%%DATADIR%%/UI/tgimg/ns_head/head_geom_pharaon.png
-%%DATADIR%%/UI/tgimg/ns_head/head_geom_pyramid.png
-%%DATADIR%%/UI/tgimg/ns_head/head_geom_sphere.png
-%%DATADIR%%/UI/tgimg/ns_head/head_geom_tube.png
-%%DATADIR%%/UI/tgimg/ns_head/head_geom_twist.png
-%%DATADIR%%/UI/tgimg/ns_head/head_geom_twist2.png
-%%DATADIR%%/UI/tgimg/ns_head/head_sphere.png
-%%DATADIR%%/UI/tgimg/ns_head/ogiva_head.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/ears_elf.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/ears_spak.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_bamby.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_bat.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_bell.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_bi_points.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_blend.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_bongo.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_bulb1.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_bulb2.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_bulb3.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_cat.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_cat2.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_cow.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_cow2.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_cow3.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_cow4.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_cow5.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_cut.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_cut2.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_cut3.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_demon.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_dog.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_dog2.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_dog3.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_donkey.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_donut.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_donut2.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_dumbo.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_fawn.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_flower.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_flower2.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_flower3.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_goat.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_gremlins.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_in_out.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_leaf.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_leaf2.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_lobe_point_out.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_long_round.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_mouse.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_mouse_toon.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_mouse_toon_round.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_mouse_toon_triangle.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_move_upy.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_none.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_none2.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_none3.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_none4.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_none5.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_out_point.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_paper.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_point_ahead.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_point_down.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_point_down2.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_puff.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_puff_ball.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_puff_circle.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_puff_circle2.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_puff_comma.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_puff_comma_in.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_puff_cube.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_puff_elephant.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_puff_elf.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_puff_mars.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_puff_moon.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_puff_point.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_puff_point_down.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_puff_point_hook.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_puff_prisma.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_puff_sharp.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_puff_sharp_inside.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_puff_sphere2.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_puff_sphere3.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_rabbit.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_rabbit2.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_rabbit_toon.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_radar.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_radar2.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_roty.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_rotz.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_spatula.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_star2_down2.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_star2_up.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_star3.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_star4_up.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_star5.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_stick.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_stick_quod.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_stick_round.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_stick_shape.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_stick_trian.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_trumpet.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_trumpet3.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_wave.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_wing_angel.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_wing_demon.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_witch.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_wiz.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_yar.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_yod.png
-%%DATADIR%%/UI/tgimg/ns_l_ear/l_ear_yod2.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_2_fingers_basic.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_2_fingers_big_top.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_2_fingers_point.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_2_fingers_thin.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_3_fingers.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_3_fingers_basic.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_3_fingers_big_top.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_3_fingers_no_nail.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_3_fingers_point.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_3_fingers_sharp.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_4_fingers.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_4_fingers_big_top.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_4_fingers_no_nail.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_4_fingers_point.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_4_fingers_sharpen.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_alibaba.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_arthritis.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_basic.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_big_top.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_but.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_cone.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_cube.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_cube_no_nail.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_cylinder.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_cylinder_cut.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_cylinder_no_nail.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_fingers_long.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_flat_down.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_geco.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_interfingers.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_knunkle.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_lagoon.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_mitten_no_nail.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_mitten_shape.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_mitten_sharp.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_no_nail.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_no_nail2.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_none.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_ogiva.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_piovra.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_point.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_point_long_basic.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_prisma.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_prisma_cut.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_prisma_no_nail.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_prisma_no_nail_cut.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_robot.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_root.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_thin_fingers.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_thin_fingers.target
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_toon.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_trumpet.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_hand_trumpet.target
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_nail_claw.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_nail_claw.target
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_nail_comma.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_nail_sphere.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_nail_thai.png
-%%DATADIR%%/UI/tgimg/ns_l_hand/l_nail_twist.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_bamby.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_bat.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_bell.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_bi_points.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_blend.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_bongo.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_bulb1.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_bulb2.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_bulb3.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_cat.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_cat2.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_cow.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_cow2.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_cow3.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_cow4.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_cow5.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_cut.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_cut2.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_cut3.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_demon.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_dog.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_dog2.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_dog3.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_donkey.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_donut.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_donut2.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_dumbo.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_fawn.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_flower.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_flower2.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_flower3.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_goat.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_gremlins.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_in_out.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_leaf.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_leaf2.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_lobe_point_out.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_long_round.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_mouse.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_mouse_toon.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_mouse_toon_round.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_mouse_toon_triangle.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_move_upy.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_none.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_none2.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_none3.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_none4.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_none5.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_out_point.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_paper.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_point_ahead.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_point_down.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_point_down2.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_puff.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_puff_ball.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_puff_circle.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_puff_circle2.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_puff_comma.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_puff_comma_in.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_puff_cube.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_puff_elephant.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_puff_elf.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_puff_mars.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_puff_moon.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_puff_point.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_puff_point_down.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_puff_point_hook.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_puff_prisma.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_puff_sharp.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_puff_sharp_inside.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_puff_sphere2.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_puff_sphere3.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_rabbit.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_rabbit2.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_rabbit_toon.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_radar.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_radar2.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_roty.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_rotz.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_spatula.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_star2_down2.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_star2_up.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_star3.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_star4_up.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_star5.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_stick.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_stick_quod.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_stick_round.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_stick_shape.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_stick_trian.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_trumpet.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_trumpet3.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_wave.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_wing_angel.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_wing_demon.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_witch.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_wiz.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_yar.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_yod.png
-%%DATADIR%%/UI/tgimg/ns_r_ear/r_ear_yod2.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_2_fingers_basic.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_2_fingers_big_top.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_2_fingers_point.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_2_fingers_thin.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_3_fingers.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_3_fingers_basic.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_3_fingers_big_top.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_3_fingers_no_nail.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_3_fingers_point.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_3_fingers_sharp.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_4_fingers.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_4_fingers_big_top.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_4_fingers_no_nail.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_4_fingers_point.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_4_fingers_sharp.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_alibaba.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_arthritis.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_basic.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_big_top.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_but.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_cone.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_cube.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_cube_no_nail.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_cylinder.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_cylinder_cut.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_cylinder_no_nail.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_fingers_long.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_flat_down.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_geco.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_interfingers.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_knunkle.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_lagoon.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_mitten_no_nail.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_mitten_shape.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_mitten_sharp.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_no_nail.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_no_nail2.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_none.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_ogiva.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_outline_flat.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_piovra.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_point.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_point_long_basic.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_prisma.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_prisma_cut.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_prisma_no_nail_cut.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_robot.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_root.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_thin_fingers.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_thin_fingers.target
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_toon.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_trumpet.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_hand_trumpet.target
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_nail_claw.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_nail_claw.target
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_nail_comma.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_nail_sphere.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_nail_thai.png
-%%DATADIR%%/UI/tgimg/ns_r_hand/r_nail_twist.png
-%%DATADIR%%/UI/tgimg/ns_torso/r_nail_claw.target
-%%DATADIR%%/UI/tgimg/pelvis/erectors_muscular.png
-%%DATADIR%%/UI/tgimg/pelvis/genitals_female.png
-%%DATADIR%%/UI/tgimg/pelvis/gluteus_fat.png
-%%DATADIR%%/UI/tgimg/pelvis/gluteus_scrawny.png
-%%DATADIR%%/UI/tgimg/pelvis/oblique_muscular.png
-%%DATADIR%%/UI/tgimg/pelvis/pelvis_width_min.png
-%%DATADIR%%/UI/tgimg/pelvis/serratus_muscular.png
-%%DATADIR%%/UI/tgimg/r_cheek/r_cheeckbone_protuding_2.png
-%%DATADIR%%/UI/tgimg/r_cheek/r_cheek_flabby.png
-%%DATADIR%%/UI/tgimg/r_cheek/r_cheek_hollow.png
-%%DATADIR%%/UI/tgimg/r_cheek/r_cheek_round.png
-%%DATADIR%%/UI/tgimg/r_cheek/r_cheek_smooth.png
-%%DATADIR%%/UI/tgimg/r_cheek/r_cheek_wrinkle.png
-%%DATADIR%%/UI/tgimg/r_cheek/r_cheekbone_down.png
-%%DATADIR%%/UI/tgimg/r_cheek/r_cheekbone_protuding.png
-%%DATADIR%%/UI/tgimg/r_cheek/r_cheekbone_shallow.png
-%%DATADIR%%/UI/tgimg/r_cheek/r_cheekbone_thin.png
-%%DATADIR%%/UI/tgimg/r_cheek/r_cheekbone_up.png
-%%DATADIR%%/UI/tgimg/r_cheek/r_cheekbone_wide.png
-%%DATADIR%%/UI/tgimg/r_ear/r_ear_backward.png
-%%DATADIR%%/UI/tgimg/r_ear/r_ear_big.png
-%%DATADIR%%/UI/tgimg/r_ear/r_ear_flap.png
-%%DATADIR%%/UI/tgimg/r_ear/r_ear_forward.png
-%%DATADIR%%/UI/tgimg/r_ear/r_ear_half_wings.png
-%%DATADIR%%/UI/tgimg/r_ear/r_ear_height.png
-%%DATADIR%%/UI/tgimg/r_ear/r_ear_lobe_big.png
-%%DATADIR%%/UI/tgimg/r_ear/r_ear_lobe_small.png
-%%DATADIR%%/UI/tgimg/r_ear/r_ear_low.png
-%%DATADIR%%/UI/tgimg/r_ear/r_ear_quod.png
-%%DATADIR%%/UI/tgimg/r_ear/r_ear_small.png
-%%DATADIR%%/UI/tgimg/r_ear/r_ear_wind.png
-%%DATADIR%%/UI/tgimg/r_ear/r_earlobe_height_max.png
-%%DATADIR%%/UI/tgimg/r_ear/r_earlobe_height_min.png
-%%DATADIR%%/UI/tgimg/r_ear/r_earlobe_width_max.png
-%%DATADIR%%/UI/tgimg/r_eye/r_eye_big.png
-%%DATADIR%%/UI/tgimg/r_eye/r_eye_cat.png
-%%DATADIR%%/UI/tgimg/r_eye/r_eye_center_height_max.png
-%%DATADIR%%/UI/tgimg/r_eye/r_eye_distance_max.png
-%%DATADIR%%/UI/tgimg/r_eye/r_eye_distance_min.png
-%%DATADIR%%/UI/tgimg/r_eye/r_eye_down.png
-%%DATADIR%%/UI/tgimg/r_eye/r_eye_external_corner_down.png
-%%DATADIR%%/UI/tgimg/r_eye/r_eye_external_corner_in.png
-%%DATADIR%%/UI/tgimg/r_eye/r_eye_external_corner_out.png
-%%DATADIR%%/UI/tgimg/r_eye/r_eye_external_corner_up.png
-%%DATADIR%%/UI/tgimg/r_eye/r_eye_external_height_max.png
-%%DATADIR%%/UI/tgimg/r_eye/r_eye_fold.png
-%%DATADIR%%/UI/tgimg/r_eye/r_eye_internal_corner_down.png
-%%DATADIR%%/UI/tgimg/r_eye/r_eye_internal_corner_in.png
-%%DATADIR%%/UI/tgimg/r_eye/r_eye_internal_corner_out.png
-%%DATADIR%%/UI/tgimg/r_eye/r_eye_internal_corner_up.png
-%%DATADIR%%/UI/tgimg/r_eye/r_eye_internal_height_max.png
-%%DATADIR%%/UI/tgimg/r_eye/r_eye_overhang.png
-%%DATADIR%%/UI/tgimg/r_eye/r_eye_small.png
-%%DATADIR%%/UI/tgimg/r_eye/r_eye_up.png
-%%DATADIR%%/UI/tgimg/r_eye/r_eye_wrinkles.png
-%%DATADIR%%/UI/tgimg/r_eye/r_eyelashes_curve.png
-%%DATADIR%%/UI/tgimg/r_eye/r_eyelashes_long.png
-%%DATADIR%%/UI/tgimg/r_eye/r_eyelashes_none.png
-%%DATADIR%%/UI/tgimg/r_eye/r_eyelids_up.png
-%%DATADIR%%/UI/tgimg/r_foot/r_ankle_big.png
-%%DATADIR%%/UI/tgimg/r_foot/r_ankle_little.png
-%%DATADIR%%/UI/tgimg/r_foot/r_foot_fingers_long.png
-%%DATADIR%%/UI/tgimg/r_foot/r_foot_height_max.png
-%%DATADIR%%/UI/tgimg/r_foot/r_foot_height_min.png
-%%DATADIR%%/UI/tgimg/r_foot/r_foot_short.png
-%%DATADIR%%/UI/tgimg/r_foot/r_foot_sizez_min.png
-%%DATADIR%%/UI/tgimg/r_foot/r_foot_width_max.png
-%%DATADIR%%/UI/tgimg/r_foot/r_foot_width_min.png
-%%DATADIR%%/UI/tgimg/r_foot/r_heel_none.png
-%%DATADIR%%/UI/tgimg/r_hand/r_hand_sizex_min.png
-%%DATADIR%%/UI/tgimg/r_hand/r_hand_sizey_min.png
-%%DATADIR%%/UI/tgimg/r_hand/r_hand_sizez_min.png
-%%DATADIR%%/UI/tgimg/r_hand/r_nail_sizex_min.png
-%%DATADIR%%/UI/tgimg/r_hand/r_nail_sizez_min.png
-%%DATADIR%%/UI/tgimg/r_lower_arm/r_lower_arm_fat.png
-%%DATADIR%%/UI/tgimg/r_lower_arm/r_lower_arm_long.png
-%%DATADIR%%/UI/tgimg/r_lower_arm/r_lower_arm_muscular.png
-%%DATADIR%%/UI/tgimg/r_lower_arm/r_lower_arm_scrawny.png
-%%DATADIR%%/UI/tgimg/r_lower_arm/r_lower_arm_short.png
-%%DATADIR%%/UI/tgimg/r_lower_arm/r_lower_arm_sizey_min.png
-%%DATADIR%%/UI/tgimg/r_lower_arm/r_lower_arm_sizez.png
-%%DATADIR%%/UI/tgimg/r_lower_arm/r_lower_arm_sizez_min.png
-%%DATADIR%%/UI/tgimg/r_lower_leg/r_calf_muscular.png
-%%DATADIR%%/UI/tgimg/r_lower_leg/r_leg_x_deform.png
-%%DATADIR%%/UI/tgimg/r_lower_leg/r_lower_leg_fat.png
-%%DATADIR%%/UI/tgimg/r_lower_leg/r_lower_leg_long.png
-%%DATADIR%%/UI/tgimg/r_lower_leg/r_lower_leg_scrawny.png
-%%DATADIR%%/UI/tgimg/r_lower_leg/r_lower_leg_sizex_min.png
-%%DATADIR%%/UI/tgimg/r_lower_leg/r_lower_leg_sizey_min.png
-%%DATADIR%%/UI/tgimg/r_lower_leg/r_lower_leg_sizez_min.png
-%%DATADIR%%/UI/tgimg/r_shoulder/r_deltoid_muscular.png
-%%DATADIR%%/UI/tgimg/r_shoulder/r_deltoid_scrawny.png
-%%DATADIR%%/UI/tgimg/r_shoulder/r_shoulder_movey_down.png
-%%DATADIR%%/UI/tgimg/r_shoulder/r_shoulder_out.png
-%%DATADIR%%/UI/tgimg/r_shoulder/r_shoulder_sizex.png
-%%DATADIR%%/UI/tgimg/r_upper_arm/r_biceps_muscular.png
-%%DATADIR%%/UI/tgimg/r_upper_arm/r_triceps.png
-%%DATADIR%%/UI/tgimg/r_upper_arm/r_upper_arm_fat.png
-%%DATADIR%%/UI/tgimg/r_upper_arm/r_upper_arm_flabby.png
-%%DATADIR%%/UI/tgimg/r_upper_arm/r_upper_arm_long.png
-%%DATADIR%%/UI/tgimg/r_upper_arm/r_upper_arm_scrawny.png
-%%DATADIR%%/UI/tgimg/r_upper_arm/r_upper_arm_short.png
-%%DATADIR%%/UI/tgimg/r_upper_arm/r_upper_arm_sizey.png
-%%DATADIR%%/UI/tgimg/r_upper_arm/r_upper_arm_sizey_min.png
-%%DATADIR%%/UI/tgimg/r_upper_arm/r_upper_arm_sizez_min.png
-%%DATADIR%%/UI/tgimg/r_upper_arm/r_upperarm_fat.png
-%%DATADIR%%/UI/tgimg/r_upper_leg/l_femoris_muscular.png
-%%DATADIR%%/UI/tgimg/r_upper_leg/r_femoris_muscular.png
-%%DATADIR%%/UI/tgimg/r_upper_leg/r_quadricipes_muscular.png
-%%DATADIR%%/UI/tgimg/r_upper_leg/r_upper_leg_fat.png
-%%DATADIR%%/UI/tgimg/r_upper_leg/r_upper_leg_long.png
-%%DATADIR%%/UI/tgimg/r_upper_leg/r_upper_leg_scrawny.png
-%%DATADIR%%/UI/tgimg/r_upper_leg/r_upper_leg_sizex_min.png
-%%DATADIR%%/UI/tgimg/r_upper_leg/r_upper_leg_sizey_min.png
-%%DATADIR%%/UI/tgimg/r_upper_leg/r_upper_leg_sizez_min.png
-%%DATADIR%%/UI/tgimg/scrawny/abdomen_scrawny.png
-%%DATADIR%%/UI/tgimg/scrawny/biceps_scrawny.png
-%%DATADIR%%/UI/tgimg/scrawny/calf_scrawny.png
-%%DATADIR%%/UI/tgimg/scrawny/deltoid_scrawny.png
-%%DATADIR%%/UI/tgimg/scrawny/dorsi_scrawny.png
-%%DATADIR%%/UI/tgimg/scrawny/forearm_scrawny.png
-%%DATADIR%%/UI/tgimg/scrawny/pectoral_scrawny.png
-%%DATADIR%%/UI/tgimg/scrawny/quadricipes_scrawny.png
-%%DATADIR%%/UI/tgimg/scrawny/triceps_scrawny.png
-%%DATADIR%%/UI/tgimg/torso/aureola_large.png
-%%DATADIR%%/UI/tgimg/torso/dorsi_muscular.png
-%%DATADIR%%/UI/tgimg/torso/dorsi_scrawny.png
-%%DATADIR%%/UI/tgimg/torso/erectors_muscular.png
-%%DATADIR%%/UI/tgimg/torso/l_pectoral_external_out.png
-%%DATADIR%%/UI/tgimg/torso/l_side_out.png
-%%DATADIR%%/UI/tgimg/torso/neck_scrawny.png
-%%DATADIR%%/UI/tgimg/torso/nipple_out.png
-%%DATADIR%%/UI/tgimg/torso/pectoral_muscular.png
-%%DATADIR%%/UI/tgimg/torso/pectoral_scrawny.png
-%%DATADIR%%/UI/tgimg/torso/r_pectoral_external_out.png
-%%DATADIR%%/UI/tgimg/torso/r_side_out.png
-%%DATADIR%%/UI/tgimg/torso/rhomboid_muscular.png
-%%DATADIR%%/UI/tgimg/torso/targets_female_breast_big_natural.png
-%%DATADIR%%/UI/tgimg/torso/targets_female_breast_medium.png
-%%DATADIR%%/UI/tgimg/torso/teres_muscular.png
-%%DATADIR%%/UI/tgimg/torso/torso_fat.png
-%%DATADIR%%/UI/tgimg/torso/torso_flabby.png
-%%DATADIR%%/UI/tgimg/torso/torso_sizex_min.png
-%%DATADIR%%/UI/tgimg/torso/torso_sizey_min.png
-%%DATADIR%%/UI/tgimg/torso/torso_sizez_min.png
-%%DATADIR%%/UI/tgimg/torso/trapezious_muscular.png
-%%DATADIR%%/UI/tgimg/weight/120_kg.png
-%%DATADIR%%/base.mesh
-%%DATADIR%%/faces.mesh
+%%PORTDOCS%%%%DOCSDIR%%/AUTHORS
+%%PORTDOCS%%%%DOCSDIR%%/COPYING
+%%PORTDOCS%%%%DOCSDIR%%/COPYING.MIT
+%%PORTDOCS%%%%DOCSDIR%%/ChangeLog
+%%PORTDOCS%%%%DOCSDIR%%/INSTALL
+%%PORTDOCS%%%%DOCSDIR%%/NEWS
+%%PORTDOCS%%%%DOCSDIR%%/README.txt
+%%PORTDOCS%%%%DOCSDIR%%/TODO
+%%DATADIR%%/base.colors
+%%DATADIR%%/base.faces
+%%DATADIR%%/base.materials
+%%DATADIR%%/base.uv
+%%DATADIR%%/base.vertices
+%%DATADIR%%/bs/characters1/afri_head1.bs
+%%DATADIR%%/bs/characters1/afri_head2.bs
+%%DATADIR%%/bs/characters1/afri_head3.bs
+%%DATADIR%%/bs/characters1/afri_head4.bs
+%%DATADIR%%/bs/characters1/afri_head5.bs
+%%DATADIR%%/bs/characters1/afri_head6.bs
+%%DATADIR%%/bs/characters1/afri_head7.bs
+%%DATADIR%%/bs/characters1/afri_head8.bs
+%%DATADIR%%/bs/characters1/afri_head9.bs
+%%DATADIR%%/bs/characters1/amer_head1.bs
+%%DATADIR%%/bs/characters1/asia_head1.bs
+%%DATADIR%%/bs/characters1/asia_head2.bs
+%%DATADIR%%/bs/characters1/asia_head3.bs
+%%DATADIR%%/bs/characters1/euro_head1.bs
+%%DATADIR%%/bs/characters1/euro_head10.bs
+%%DATADIR%%/bs/characters1/euro_head11.bs
+%%DATADIR%%/bs/characters1/euro_head12.bs
+%%DATADIR%%/bs/characters1/euro_head13.bs
+%%DATADIR%%/bs/characters1/euro_head2.bs
+%%DATADIR%%/bs/characters1/euro_head3.bs
+%%DATADIR%%/bs/characters1/euro_head4.bs
+%%DATADIR%%/bs/characters1/euro_head5.bs
+%%DATADIR%%/bs/characters1/euro_head6.bs
+%%DATADIR%%/bs/characters1/euro_head7.bs
+%%DATADIR%%/bs/characters1/euro_head8.bs
+%%DATADIR%%/bs/characters1/euro_head9.bs
+%%DATADIR%%/bs/characters2/euro_beauty1.bs
+%%DATADIR%%/bs/characters2/top_model_body1.bs
+%%DATADIR%%/bs/characters2/woman_head1.bs
+%%DATADIR%%/bs/characters2/woman_head10.bs
+%%DATADIR%%/bs/characters2/woman_head11.bs
+%%DATADIR%%/bs/characters2/woman_head12.bs
+%%DATADIR%%/bs/characters2/woman_head2.bs
+%%DATADIR%%/bs/characters2/woman_head3.bs
+%%DATADIR%%/bs/characters2/woman_head4.bs
+%%DATADIR%%/bs/characters2/woman_head5.bs
+%%DATADIR%%/bs/characters2/woman_head6.bs
+%%DATADIR%%/bs/characters2/woman_head7.bs
+%%DATADIR%%/bs/characters2/woman_head8.bs
+%%DATADIR%%/bs/characters2/woman_head9.bs
+%%DATADIR%%/bs/ns_characters1/geowarrior.bs
+%%DATADIR%%/bs/ns_characters1/mannequin_man.bs
+%%DATADIR%%/bs/ns_characters1/mannequin_woman.bs
+%%DATADIR%%/bs/ns_characters1/night_female_elf.bs
+%%DATADIR%%/bs/ns_characters1/skeleton.bs
+%%DATADIR%%/bs/ns_characters1/superhero-man.bs
+%%DATADIR%%/bs/ns_characters1/toon1-bis.bs
+%%DATADIR%%/bs/ns_characters1/toon1.bs
+%%DATADIR%%/bs/ns_characters1/toon2-bis.bs
+%%DATADIR%%/bs/ns_characters1/toon2.bs
+%%DATADIR%%/bs/ns_characters1/toon3-bis.bs
+%%DATADIR%%/bs/ns_characters1/toon3.bs
+%%DATADIR%%/bs/ns_characters1/toon4-bis.bs
+%%DATADIR%%/bs/ns_characters1/toon4.bs
+%%DATADIR%%/bs/ns_characters1/toon5-bis.bs
+%%DATADIR%%/bs/ns_characters1/toon5.bs
+%%DATADIR%%/bs/ns_characters1/witch.bs
+%%DATADIR%%/bs/types/ectomorph1.bs
+%%DATADIR%%/bs/types/ectomorph2.bs
+%%DATADIR%%/bs/types/ectomorph3.bs
+%%DATADIR%%/bs/types/endomorph1.bs
+%%DATADIR%%/bs/types/endomorph2.bs
+%%DATADIR%%/bs/types/endomorph3.bs
+%%DATADIR%%/bs/types/mesomorph1.bs
+%%DATADIR%%/bs/types/mesomorph2.bs
+%%DATADIR%%/bs/types/mesomorph3.bs
+%%DATADIR%%/pixmaps/bsimg/characters1/afri_head1.png
+%%DATADIR%%/pixmaps/bsimg/characters1/afri_head2.png
+%%DATADIR%%/pixmaps/bsimg/characters1/afri_head3.png
+%%DATADIR%%/pixmaps/bsimg/characters1/afri_head4.png
+%%DATADIR%%/pixmaps/bsimg/characters1/afri_head5.png
+%%DATADIR%%/pixmaps/bsimg/characters1/afri_head6.png
+%%DATADIR%%/pixmaps/bsimg/characters1/afri_head7.png
+%%DATADIR%%/pixmaps/bsimg/characters1/afri_head8.png
+%%DATADIR%%/pixmaps/bsimg/characters1/afri_head9.png
+%%DATADIR%%/pixmaps/bsimg/characters1/amer_head1.png
+%%DATADIR%%/pixmaps/bsimg/characters1/asia_head1.png
+%%DATADIR%%/pixmaps/bsimg/characters1/asia_head2.png
+%%DATADIR%%/pixmaps/bsimg/characters1/asia_head3.png
+%%DATADIR%%/pixmaps/bsimg/characters1/euro_head1.png
+%%DATADIR%%/pixmaps/bsimg/characters1/euro_head10.png
+%%DATADIR%%/pixmaps/bsimg/characters1/euro_head11.png
+%%DATADIR%%/pixmaps/bsimg/characters1/euro_head12.png
+%%DATADIR%%/pixmaps/bsimg/characters1/euro_head13.png
+%%DATADIR%%/pixmaps/bsimg/characters1/euro_head2.png
+%%DATADIR%%/pixmaps/bsimg/characters1/euro_head3.png
+%%DATADIR%%/pixmaps/bsimg/characters1/euro_head4.png
+%%DATADIR%%/pixmaps/bsimg/characters1/euro_head5.png
+%%DATADIR%%/pixmaps/bsimg/characters1/euro_head6.png
+%%DATADIR%%/pixmaps/bsimg/characters1/euro_head7.png
+%%DATADIR%%/pixmaps/bsimg/characters1/euro_head8.png
+%%DATADIR%%/pixmaps/bsimg/characters1/euro_head9.png
+%%DATADIR%%/pixmaps/bsimg/characters2/euro_beauty1.png
+%%DATADIR%%/pixmaps/bsimg/characters2/top_model_body1.png
+%%DATADIR%%/pixmaps/bsimg/characters2/woman_head1.png
+%%DATADIR%%/pixmaps/bsimg/characters2/woman_head10.png
+%%DATADIR%%/pixmaps/bsimg/characters2/woman_head11.png
+%%DATADIR%%/pixmaps/bsimg/characters2/woman_head12.png
+%%DATADIR%%/pixmaps/bsimg/characters2/woman_head2.png
+%%DATADIR%%/pixmaps/bsimg/characters2/woman_head3.png
+%%DATADIR%%/pixmaps/bsimg/characters2/woman_head4.png
+%%DATADIR%%/pixmaps/bsimg/characters2/woman_head5.png
+%%DATADIR%%/pixmaps/bsimg/characters2/woman_head6.png
+%%DATADIR%%/pixmaps/bsimg/characters2/woman_head7.png
+%%DATADIR%%/pixmaps/bsimg/characters2/woman_head8.png
+%%DATADIR%%/pixmaps/bsimg/characters2/woman_head9.png
+%%DATADIR%%/pixmaps/bsimg/ns_characters1/geowarrior.png
+%%DATADIR%%/pixmaps/bsimg/ns_characters1/mannequin_man.png
+%%DATADIR%%/pixmaps/bsimg/ns_characters1/mannequin_woman.png
+%%DATADIR%%/pixmaps/bsimg/ns_characters1/night_female_elf.png
+%%DATADIR%%/pixmaps/bsimg/ns_characters1/skeleton.png
+%%DATADIR%%/pixmaps/bsimg/ns_characters1/superhero-man.png
+%%DATADIR%%/pixmaps/bsimg/ns_characters1/toon1-bis.png
+%%DATADIR%%/pixmaps/bsimg/ns_characters1/toon1.png
+%%DATADIR%%/pixmaps/bsimg/ns_characters1/toon2-bis.png
+%%DATADIR%%/pixmaps/bsimg/ns_characters1/toon2.png
+%%DATADIR%%/pixmaps/bsimg/ns_characters1/toon3-bis.png
+%%DATADIR%%/pixmaps/bsimg/ns_characters1/toon3.png
+%%DATADIR%%/pixmaps/bsimg/ns_characters1/toon4-bis.png
+%%DATADIR%%/pixmaps/bsimg/ns_characters1/toon4.png
+%%DATADIR%%/pixmaps/bsimg/ns_characters1/toon5-bis.png
+%%DATADIR%%/pixmaps/bsimg/ns_characters1/toon5.png
+%%DATADIR%%/pixmaps/bsimg/ns_characters1/witch.png
+%%DATADIR%%/pixmaps/bsimg/user_bs.png
+%%DATADIR%%/pixmaps/tgimg/000_right_footfinger_5_2/r_foot_5_2_rot1.png
+%%DATADIR%%/pixmaps/tgimg/001_right_footfinger_5_1/r_foot_5_1_rot1.png
+%%DATADIR%%/pixmaps/tgimg/002_right_footfinger_4_2/r_foot_4_2_rot1.png
+%%DATADIR%%/pixmaps/tgimg/003_right_footfinger_4_1/r_foot_4_1_rot1.png
+%%DATADIR%%/pixmaps/tgimg/004_right_footfinger_3_2/r_foot_3_2_rot1.png
+%%DATADIR%%/pixmaps/tgimg/005_right_footfinger_3_1/r_foot_3_1_rot1.png
+%%DATADIR%%/pixmaps/tgimg/006_right_footfinger_2_2/r_foot_2_2_rot1.png
+%%DATADIR%%/pixmaps/tgimg/007_right_footfinger_2_1/r_foot_2_1_rot1.png
+%%DATADIR%%/pixmaps/tgimg/008_right_footfinger_1_2/r_foot_1_2_rot1.png
+%%DATADIR%%/pixmaps/tgimg/009_right_footfinger_1_1/r_foot_1_1_rot1.png
+%%DATADIR%%/pixmaps/tgimg/020_right_foot/right_foot_rot1.png
+%%DATADIR%%/pixmaps/tgimg/020_right_foot/right_foot_rot2.png
+%%DATADIR%%/pixmaps/tgimg/020_right_foot/right_foot_rot3.png
+%%DATADIR%%/pixmaps/tgimg/021_left_footfinger_5_2/l_foot_5_2_rot1.png
+%%DATADIR%%/pixmaps/tgimg/022_left_footfinger_5_1/l_foot_5_1_rot1.png
+%%DATADIR%%/pixmaps/tgimg/023_left_footfinger_4_2/l_foot_4_2_rot1.png
+%%DATADIR%%/pixmaps/tgimg/024_left_footfinger_4_1/l_foot_4_1_rot1.png
+%%DATADIR%%/pixmaps/tgimg/025_left_footfinger_3_2/l_foot_3_2_rot1.png
+%%DATADIR%%/pixmaps/tgimg/026_left_footfinger_3_1/l_foot_3_1_rot1.png
+%%DATADIR%%/pixmaps/tgimg/027_left_footfinger_2_2/l_foot_2_2_rot1.png
+%%DATADIR%%/pixmaps/tgimg/028_left_footfinger_2_1/l_foot_2_1_rot1.png
+%%DATADIR%%/pixmaps/tgimg/029_left_footfinger_1_2/l_foot_1_2_rot1.png
+%%DATADIR%%/pixmaps/tgimg/030_left_footfinger_1_1/l_foot_1_1_rot1.png
+%%DATADIR%%/pixmaps/tgimg/040_left_foot/l_foot_rot1.png
+%%DATADIR%%/pixmaps/tgimg/040_left_foot/l_foot_rot2.png
+%%DATADIR%%/pixmaps/tgimg/040_left_foot/l_foot_rot3.png
+%%DATADIR%%/pixmaps/tgimg/041_right_pollex_3/r_pollex3_rot1.png
+%%DATADIR%%/pixmaps/tgimg/042_right_pollex_2/r_pollex2_rot1.png
+%%DATADIR%%/pixmaps/tgimg/042_right_pollex_2/r_pollex2_rot2.png
+%%DATADIR%%/pixmaps/tgimg/043_right_pollex_1/r_pollex1_rot1.png
+%%DATADIR%%/pixmaps/tgimg/043_right_pollex_1/r_pollex1_rot3.png
+%%DATADIR%%/pixmaps/tgimg/044_right_forefinger_3/r_forefinger3_rot2.png
+%%DATADIR%%/pixmaps/tgimg/045_right_forefinger_2/r_forefinger2_rot2.png
+%%DATADIR%%/pixmaps/tgimg/046_right_forefinger_1/r_forefinger1_rot2.png
+%%DATADIR%%/pixmaps/tgimg/046_right_forefinger_1/r_forefinger1_rot3.png
+%%DATADIR%%/pixmaps/tgimg/047_right_middlefinger_3/r_middlefinger3_rot2.png
+%%DATADIR%%/pixmaps/tgimg/048_right_middlefinger_2/r_middlefinger2_rot2.png
+%%DATADIR%%/pixmaps/tgimg/049_right_middlefinger_1/r_middlefinger1_rot2.png
+%%DATADIR%%/pixmaps/tgimg/049_right_middlefinger_1/r_middlefinger1_rot3.png
+%%DATADIR%%/pixmaps/tgimg/050_right_ringfinger_3/r_ringfinger3_rot2.png
+%%DATADIR%%/pixmaps/tgimg/051_right_ringfinger_2/r_ringfinger2_rot2.png
+%%DATADIR%%/pixmaps/tgimg/052_right_ringfinger_1/r_ringfinger1_rot2.png
+%%DATADIR%%/pixmaps/tgimg/052_right_ringfinger_1/r_ringfinger1_rot3.png
+%%DATADIR%%/pixmaps/tgimg/053_right_littlefinger_3/r_littlefinger3_rot2.png
+%%DATADIR%%/pixmaps/tgimg/054_right_littlefinger_2/r_littlefinger2_rot2.png
+%%DATADIR%%/pixmaps/tgimg/055_right_littlefinger_1/r_littlefinger1_rot2.png
+%%DATADIR%%/pixmaps/tgimg/055_right_littlefinger_1/r_littlefinger1_rot3.png
+%%DATADIR%%/pixmaps/tgimg/060_right_hand/right_hand_rot1.png
+%%DATADIR%%/pixmaps/tgimg/060_right_hand/right_hand_rot2.png
+%%DATADIR%%/pixmaps/tgimg/060_right_hand/right_hand_rot3.png
+%%DATADIR%%/pixmaps/tgimg/061_left_pollex_3/l_pollex3_rot1.png
+%%DATADIR%%/pixmaps/tgimg/062_left_pollex_2/l_pollex2_rot1.png
+%%DATADIR%%/pixmaps/tgimg/062_left_pollex_2/l_pollex2_rot2.png
+%%DATADIR%%/pixmaps/tgimg/062_left_pollex_2/l_pollex2_rot3.png
+%%DATADIR%%/pixmaps/tgimg/063_left_pollex_1/l_pollex1_rot1.png
+%%DATADIR%%/pixmaps/tgimg/063_left_pollex_1/l_pollex1_rot3.png
+%%DATADIR%%/pixmaps/tgimg/064_left_forefinger_3/l_forefinger3_rot2.png
+%%DATADIR%%/pixmaps/tgimg/065_left_forefinger_2/l_forefinger2_rot2.png
+%%DATADIR%%/pixmaps/tgimg/066_left_forefinger_1/l_forefinger1_rot2.png
+%%DATADIR%%/pixmaps/tgimg/066_left_forefinger_1/l_forefinger1_rot3.png
+%%DATADIR%%/pixmaps/tgimg/067_left_middlefinger_3/l_middlefinger3_rot2.png
+%%DATADIR%%/pixmaps/tgimg/068_left_middlefinger_2/l_middlefinger2_rot2.png
+%%DATADIR%%/pixmaps/tgimg/069_left_middlefinger_1/l_middlefinger1_rot2.png
+%%DATADIR%%/pixmaps/tgimg/069_left_middlefinger_1/l_middlefinger1_rot3.png
+%%DATADIR%%/pixmaps/tgimg/070_left_ringfinger_3/l_ringfinger3_rot2.png
+%%DATADIR%%/pixmaps/tgimg/071_left_ringfinger_2/l_ringfinger2_rot2.png
+%%DATADIR%%/pixmaps/tgimg/072_left_ringfinger_1/l_ringfinger1_rot2.png
+%%DATADIR%%/pixmaps/tgimg/072_left_ringfinger_1/l_ringfinger1_rot3.png
+%%DATADIR%%/pixmaps/tgimg/073_left_littlefinger_3/l_littlefinger3_rot2.png
+%%DATADIR%%/pixmaps/tgimg/074_left_littlefinger_2/l_littlefinger2_rot2.png
+%%DATADIR%%/pixmaps/tgimg/075_left_littlefinger_1/l_littlefinger1_rot2.png
+%%DATADIR%%/pixmaps/tgimg/075_left_littlefinger_1/l_littlefinger1_rot3.png
+%%DATADIR%%/pixmaps/tgimg/080_left_hand/l_hand_rot1.png
+%%DATADIR%%/pixmaps/tgimg/080_left_hand/l_hand_rot2.png
+%%DATADIR%%/pixmaps/tgimg/080_left_hand/l_hand_rot3.png
+%%DATADIR%%/pixmaps/tgimg/100_right_lower_leg/right_lower_leg_rot1.png
+%%DATADIR%%/pixmaps/tgimg/120_left_lower_leg/l_lower_leg_rot1.png
+%%DATADIR%%/pixmaps/tgimg/140_right_lower_arm/r_lower_arm_rot1.png
+%%DATADIR%%/pixmaps/tgimg/160_left_lower_arm/l_lower_arm_rot1.png
+%%DATADIR%%/pixmaps/tgimg/180_right_upper_leg/right_upper_leg_rot1.png
+%%DATADIR%%/pixmaps/tgimg/180_right_upper_leg/right_upper_leg_rot2.png
+%%DATADIR%%/pixmaps/tgimg/180_right_upper_leg/right_upper_leg_rot3.png
+%%DATADIR%%/pixmaps/tgimg/200_left_upper_leg/l_upper_leg_rot1.png
+%%DATADIR%%/pixmaps/tgimg/200_left_upper_leg/l_upper_leg_rot2.png
+%%DATADIR%%/pixmaps/tgimg/200_left_upper_leg/l_upper_leg_rot3.png
+%%DATADIR%%/pixmaps/tgimg/220_right_upper_arm/right_upper_arm_rot1.png
+%%DATADIR%%/pixmaps/tgimg/220_right_upper_arm/right_upper_arm_rot2.png
+%%DATADIR%%/pixmaps/tgimg/220_right_upper_arm/right_upper_arm_rot3.png
+%%DATADIR%%/pixmaps/tgimg/240_left_upper_arm/l_upper_arm_rot1.png
+%%DATADIR%%/pixmaps/tgimg/240_left_upper_arm/l_upper_arm_rot2.png
+%%DATADIR%%/pixmaps/tgimg/240_left_upper_arm/l_upper_arm_rot3.png
+%%DATADIR%%/pixmaps/tgimg/260_right_collar/right_collar_rot1.png
+%%DATADIR%%/pixmaps/tgimg/260_right_collar/right_collar_rot2.png
+%%DATADIR%%/pixmaps/tgimg/260_right_collar/right_collar_rot3.png
+%%DATADIR%%/pixmaps/tgimg/280_left_collar/l_collar_rot1.png
+%%DATADIR%%/pixmaps/tgimg/280_left_collar/l_collar_rot2.png
+%%DATADIR%%/pixmaps/tgimg/280_left_collar/l_collar_rot3.png
+%%DATADIR%%/pixmaps/tgimg/300_head/head_rot1.png
+%%DATADIR%%/pixmaps/tgimg/300_head/head_rot2.png
+%%DATADIR%%/pixmaps/tgimg/300_head/head_rot3.png
+%%DATADIR%%/pixmaps/tgimg/320_neck/neck_rot1.png
+%%DATADIR%%/pixmaps/tgimg/340_lower_torso/torso3_rot2.png
+%%DATADIR%%/pixmaps/tgimg/340_lower_torso/torso3_rot3.png
+%%DATADIR%%/pixmaps/tgimg/360_upper_torso/torso2_rot1.png
+%%DATADIR%%/pixmaps/tgimg/360_upper_torso/torso2_rot2.png
+%%DATADIR%%/pixmaps/tgimg/360_upper_torso/torso2_rot3.png
+%%DATADIR%%/pixmaps/tgimg/abdomen/abdomen_female.png
+%%DATADIR%%/pixmaps/tgimg/abdomen/abdomen_female2.png
+%%DATADIR%%/pixmaps/tgimg/abdomen/abdomen_lower_fat.png
+%%DATADIR%%/pixmaps/tgimg/abdomen/abdomen_muscolar_height.png
+%%DATADIR%%/pixmaps/tgimg/abdomen/abdomen_muscolar_width.png
+%%DATADIR%%/pixmaps/tgimg/abdomen/abdomen_muscular.png
+%%DATADIR%%/pixmaps/tgimg/abdomen/abdomen_muscular_asimmetric.png
+%%DATADIR%%/pixmaps/tgimg/abdomen/abdomen_pregnancy.png
+%%DATADIR%%/pixmaps/tgimg/abdomen/abdomen_scrawny.png
+%%DATADIR%%/pixmaps/tgimg/abdomen/abdomen_soft.png
+%%DATADIR%%/pixmaps/tgimg/abdomen/belly_button_big.png
+%%DATADIR%%/pixmaps/tgimg/abdomen/belly_button_down.png
+%%DATADIR%%/pixmaps/tgimg/abdomen/belly_button_half.png
+%%DATADIR%%/pixmaps/tgimg/abdomen/belly_button_height_max.png
+%%DATADIR%%/pixmaps/tgimg/abdomen/belly_button_height_min.png
+%%DATADIR%%/pixmaps/tgimg/abdomen/belly_button_left.png
+%%DATADIR%%/pixmaps/tgimg/abdomen/belly_button_outie.png
+%%DATADIR%%/pixmaps/tgimg/abdomen/belly_button_right.png
+%%DATADIR%%/pixmaps/tgimg/abdomen/belly_button_small.png
+%%DATADIR%%/pixmaps/tgimg/abdomen/belly_button_up.png
+%%DATADIR%%/pixmaps/tgimg/abdomen/belly_button_width_max.png
+%%DATADIR%%/pixmaps/tgimg/abdomen/belly_button_width_min.png
+%%DATADIR%%/pixmaps/tgimg/abdomen/belly_out.png
+%%DATADIR%%/pixmaps/tgimg/abdomen/no_belly_button.png
+%%DATADIR%%/pixmaps/tgimg/abdomen/serratus_muscular.png
+%%DATADIR%%/pixmaps/tgimg/abdomen/waist_diameter_max.png
+%%DATADIR%%/pixmaps/tgimg/abdomen/waist_down.png
+%%DATADIR%%/pixmaps/tgimg/abdomen/waist_forward.png
+%%DATADIR%%/pixmaps/tgimg/abdomen/waist_left.png
+%%DATADIR%%/pixmaps/tgimg/abdomen/waist_right.png
+%%DATADIR%%/pixmaps/tgimg/abdomen/waist_small_depth.png
+%%DATADIR%%/pixmaps/tgimg/abdomen/waist_small_width.png
+%%DATADIR%%/pixmaps/tgimg/abdomen/waist_up.png
+%%DATADIR%%/pixmaps/tgimg/brow_ridge/brow_receding.png
+%%DATADIR%%/pixmaps/tgimg/brow_ridge/brow_ridge_center_down.png
+%%DATADIR%%/pixmaps/tgimg/brow_ridge/brow_ridge_center_protuding.png
+%%DATADIR%%/pixmaps/tgimg/brow_ridge/brow_ridge_center_receding.png
+%%DATADIR%%/pixmaps/tgimg/brow_ridge/brow_ridge_center_up.png
+%%DATADIR%%/pixmaps/tgimg/brow_ridge/brow_ridge_mid_down.png
+%%DATADIR%%/pixmaps/tgimg/brow_ridge/brow_ridge_mid_protuding.png
+%%DATADIR%%/pixmaps/tgimg/brow_ridge/brow_ridge_mid_receding.png
+%%DATADIR%%/pixmaps/tgimg/brow_ridge/brow_ridge_mid_up.png
+%%DATADIR%%/pixmaps/tgimg/brow_ridge/brow_ridge_outer_down.png
+%%DATADIR%%/pixmaps/tgimg/brow_ridge/brow_ridge_outer_protuding.png
+%%DATADIR%%/pixmaps/tgimg/brow_ridge/brow_ridge_outer_receding.png
+%%DATADIR%%/pixmaps/tgimg/brow_ridge/brow_ridge_outer_up.png
+%%DATADIR%%/pixmaps/tgimg/brow_ridge/brow_ridge_point_protuding.png
+%%DATADIR%%/pixmaps/tgimg/brow_ridge/brow_ridge_point_receding.png
+%%DATADIR%%/pixmaps/tgimg/brow_ridge/brow_ridge_protuding.png
+%%DATADIR%%/pixmaps/tgimg/brow_ridge/brow_ridge_sharp.png
+%%DATADIR%%/pixmaps/tgimg/brow_ridge/brow_ridge_smooth.png
+%%DATADIR%%/pixmaps/tgimg/brow_ridge/brow_ridge_up_sharp.png
+%%DATADIR%%/pixmaps/tgimg/brow_ridge/brow_ridge_up_smooth.png
+%%DATADIR%%/pixmaps/tgimg/brow_ridge/brow_ridge_wide.png
+%%DATADIR%%/pixmaps/tgimg/chin_jaw/jaw_angle.png
+%%DATADIR%%/pixmaps/tgimg/chin_jaw/jaw_convex.png
+%%DATADIR%%/pixmaps/tgimg/chin_jaw/jaw_down.png
+%%DATADIR%%/pixmaps/tgimg/chin_jaw/jaw_move_orizonthal_left.png
+%%DATADIR%%/pixmaps/tgimg/chin_jaw/jaw_move_orizonthal_right.png
+%%DATADIR%%/pixmaps/tgimg/chin_jaw/jaw_open.png
+%%DATADIR%%/pixmaps/tgimg/chin_jaw/jaw_out.png
+%%DATADIR%%/pixmaps/tgimg/chin_jaw/jaw_round.png
+%%DATADIR%%/pixmaps/tgimg/chin_jaw/jaw_round_vertical.png
+%%DATADIR%%/pixmaps/tgimg/chin_jaw/jaw_shut.png
+%%DATADIR%%/pixmaps/tgimg/chin_jaw/jaw_square.png
+%%DATADIR%%/pixmaps/tgimg/chin_jaw/jaw_thin.png
+%%DATADIR%%/pixmaps/tgimg/chin_jaw/jaw_triangular.png
+%%DATADIR%%/pixmaps/tgimg/chin_jaw/jaw_wide.png
+%%DATADIR%%/pixmaps/tgimg/chin_jaw/jaw_widht_max.png
+%%DATADIR%%/pixmaps/tgimg/chin_jaw2/chin_backward.png
+%%DATADIR%%/pixmaps/tgimg/chin_jaw2/chin_down.png
+%%DATADIR%%/pixmaps/tgimg/chin_jaw2/chin_forward.png
+%%DATADIR%%/pixmaps/tgimg/chin_jaw2/chin_height_max.png
+%%DATADIR%%/pixmaps/tgimg/chin_jaw2/chin_height_min.png
+%%DATADIR%%/pixmaps/tgimg/chin_jaw2/chin_jutting.png
+%%DATADIR%%/pixmaps/tgimg/chin_jaw2/chin_little.png
+%%DATADIR%%/pixmaps/tgimg/chin_jaw2/chin_recessed.png
+%%DATADIR%%/pixmaps/tgimg/chin_jaw2/chin_relax.png
+%%DATADIR%%/pixmaps/tgimg/chin_jaw2/chin_second.png
+%%DATADIR%%/pixmaps/tgimg/chin_jaw2/chin_separated.png
+%%DATADIR%%/pixmaps/tgimg/chin_jaw2/chin_separeted_forward.png
+%%DATADIR%%/pixmaps/tgimg/chin_jaw2/chin_shallow.png
+%%DATADIR%%/pixmaps/tgimg/chin_jaw2/chin_short.png
+%%DATADIR%%/pixmaps/tgimg/chin_jaw2/chin_up.png
+%%DATADIR%%/pixmaps/tgimg/chin_jaw2/chin_wide.png
+%%DATADIR%%/pixmaps/tgimg/forehead/forehead_back.png
+%%DATADIR%%/pixmaps/tgimg/forehead/forehead_forward.png
+%%DATADIR%%/pixmaps/tgimg/forehead/forehead_narrow.png
+%%DATADIR%%/pixmaps/tgimg/forehead/forehead_narrow2.png
+%%DATADIR%%/pixmaps/tgimg/forehead/forehead_short.png
+%%DATADIR%%/pixmaps/tgimg/forehead/forehead_tall.png
+%%DATADIR%%/pixmaps/tgimg/forehead/forehead_wide.png
+%%DATADIR%%/pixmaps/tgimg/forehead/forehead_wide2.png
+%%DATADIR%%/pixmaps/tgimg/forehead/forehead_wrinkle.png
+%%DATADIR%%/pixmaps/tgimg/forehead/temple_narrow.png
+%%DATADIR%%/pixmaps/tgimg/forehead/temple_wide.png
+%%DATADIR%%/pixmaps/tgimg/head/head_baby.png
+%%DATADIR%%/pixmaps/tgimg/head/head_ear_sellion_depth.png
+%%DATADIR%%/pixmaps/tgimg/head/head_eliptical.png
+%%DATADIR%%/pixmaps/tgimg/head/head_external_temples_in.png
+%%DATADIR%%/pixmaps/tgimg/head/head_face_angle_max.png
+%%DATADIR%%/pixmaps/tgimg/head/head_face_angle_min.png
+%%DATADIR%%/pixmaps/tgimg/head/head_female_base.png
+%%DATADIR%%/pixmaps/tgimg/head/head_height_max.png
+%%DATADIR%%/pixmaps/tgimg/head/head_height_min.png
+%%DATADIR%%/pixmaps/tgimg/head/head_length_max.png
+%%DATADIR%%/pixmaps/tgimg/head/head_length_min.png
+%%DATADIR%%/pixmaps/tgimg/head/head_lower_height_max.png
+%%DATADIR%%/pixmaps/tgimg/head/head_lower_height_min.png
+%%DATADIR%%/pixmaps/tgimg/head/head_old.png
+%%DATADIR%%/pixmaps/tgimg/head/head_ovoid.png
+%%DATADIR%%/pixmaps/tgimg/head/head_ovoidal.png
+%%DATADIR%%/pixmaps/tgimg/head/head_ovoidal_inv.png
+%%DATADIR%%/pixmaps/tgimg/head/head_pentagonoidal.png
+%%DATADIR%%/pixmaps/tgimg/head/head_rectangular.png
+%%DATADIR%%/pixmaps/tgimg/head/head_rhomboidal.png
+%%DATADIR%%/pixmaps/tgimg/head/head_round.png
+%%DATADIR%%/pixmaps/tgimg/head/head_skull_birsoid.png
+%%DATADIR%%/pixmaps/tgimg/head/head_skull_ellipsoid.png
+%%DATADIR%%/pixmaps/tgimg/head/head_skull_pentagonoid.png
+%%DATADIR%%/pixmaps/tgimg/head/head_skull_romboid.png
+%%DATADIR%%/pixmaps/tgimg/head/head_skull_spheroid.png
+%%DATADIR%%/pixmaps/tgimg/head/head_skull_spheroid2.png
+%%DATADIR%%/pixmaps/tgimg/head/head_smooth.png
+%%DATADIR%%/pixmaps/tgimg/head/head_trapezioidal.png
+%%DATADIR%%/pixmaps/tgimg/head/head_trapezioidal_inv.png
+%%DATADIR%%/pixmaps/tgimg/head/head_width_max.png
+%%DATADIR%%/pixmaps/tgimg/head/head_width_min.png
+%%DATADIR%%/pixmaps/tgimg/l_cheek/l_cheeck_line1.png
+%%DATADIR%%/pixmaps/tgimg/l_cheek/l_cheeck_line2.png
+%%DATADIR%%/pixmaps/tgimg/l_cheek/l_cheeck_line3.png
+%%DATADIR%%/pixmaps/tgimg/l_cheek/l_cheeck_line4.png
+%%DATADIR%%/pixmaps/tgimg/l_cheek/l_cheeck_line5.png
+%%DATADIR%%/pixmaps/tgimg/l_cheek/l_cheeck_line6.png
+%%DATADIR%%/pixmaps/tgimg/l_cheek/l_cheek_flabby.png
+%%DATADIR%%/pixmaps/tgimg/l_cheek/l_cheek_hollow.png
+%%DATADIR%%/pixmaps/tgimg/l_cheek/l_cheek_round.png
+%%DATADIR%%/pixmaps/tgimg/l_cheek/l_cheek_smooth.png
+%%DATADIR%%/pixmaps/tgimg/l_cheek/l_cheek_up.png
+%%DATADIR%%/pixmaps/tgimg/l_cheek/l_cheek_wrinkle.png
+%%DATADIR%%/pixmaps/tgimg/l_cheek/l_cheekbone_down.png
+%%DATADIR%%/pixmaps/tgimg/l_cheek/l_cheekbone_protuding.png
+%%DATADIR%%/pixmaps/tgimg/l_cheek/l_cheekbone_protuding_up.png
+%%DATADIR%%/pixmaps/tgimg/l_cheek/l_cheekbone_shallow.png
+%%DATADIR%%/pixmaps/tgimg/l_cheek/l_cheekbone_thin.png
+%%DATADIR%%/pixmaps/tgimg/l_cheek/l_cheekbone_up.png
+%%DATADIR%%/pixmaps/tgimg/l_cheek/l_cheekbone_wide.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_antihelix_large.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_antihelix_none.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_antihelix_puff.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_antihelix_round.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_antihelix_short.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_antihelix_thin.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_antitragus_down.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_antitragus_none.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_antitragus_puff.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_antitragus_round.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_antitragus_up.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_baby.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_backward.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_big.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_crus_helicis_down.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_crus_helicis_large.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_crus_helicis_none.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_crus_helicis_up.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_cymba_conchae_big.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_cymba_conchae_small.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_extrabig.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_extrasmall.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_extraup.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_flap.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_flappy_bottom.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_flappy_sideways.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_flappy_top.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_forward.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_half_wings.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_height.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_inferior_crus_large.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_internal_flat.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_lobe_big.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_lobe_small.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_lobe_width_max.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_lobe_width_min.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_low.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_lower_depth.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_lower_height.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_lower_small.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_outward.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_quod.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_rot_backward.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_rot_forward.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_rot_outward.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_small.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_thin.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_ear_wind.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_earlobe_height_max.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_earlobe_height_min.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_earlobe_out.png
+%%DATADIR%%/pixmaps/tgimg/l_ear/l_earlobe_width_max.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_helix_in1.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_helix_in10.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_helix_in11.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_helix_in2.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_helix_in3.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_helix_in4.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_helix_in5.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_helix_in6.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_helix_in7.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_helix_in8.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_helix_in9.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_helix_out1.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_helix_out10.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_helix_out11.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_helix_out2.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_helix_out3.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_helix_out4.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_helix_out5.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_helix_out6.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_helix_out7.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_helix_out8.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_helix_out9.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_helix_puff.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_helix_side.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_helix_thin.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_helix_upper.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_incisura_interior_down.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_incisura_interior_up.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_incisura_intertragica_big.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_incisura_intertragica_down.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_incisura_intertragica_small.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_incisura_intertragica_up.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_inferior_crus_narrow.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_inferior_crus_none.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_scapha_lower_large.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_scapha_none.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_scapha_side_large.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_scapha_upper_large.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_superior_crus_large.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_superior_crus_narrow.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_superior_crus_none.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_tragus_down.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_tragus_in.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_tragus_none.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_tragus_puff.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_tragus_small.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_tragus_up.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_triangular_fossa_big.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_triangular_fossa_long.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_triangular_fossa_none.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_triangular_fossa_short.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_triangular_fossa_small.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_tuberculum_auricolae.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_tuberculum_supertragicum.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_upper_big.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_upper_depth.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_upper_height.png
+%%DATADIR%%/pixmaps/tgimg/l_ear2/l_ear_upper_out.png
+%%DATADIR%%/pixmaps/tgimg/l_eye/l_eye_big.png
+%%DATADIR%%/pixmaps/tgimg/l_eye/l_eye_box.png
+%%DATADIR%%/pixmaps/tgimg/l_eye/l_eye_bulb_back.png
+%%DATADIR%%/pixmaps/tgimg/l_eye/l_eye_bulb_down.png
+%%DATADIR%%/pixmaps/tgimg/l_eye/l_eye_bulb_extrasize.png
+%%DATADIR%%/pixmaps/tgimg/l_eye/l_eye_bulb_forward.png
+%%DATADIR%%/pixmaps/tgimg/l_eye/l_eye_bulb_left.png
+%%DATADIR%%/pixmaps/tgimg/l_eye/l_eye_bulb_minisize.png
+%%DATADIR%%/pixmaps/tgimg/l_eye/l_eye_bulb_right.png
+%%DATADIR%%/pixmaps/tgimg/l_eye/l_eye_bulb_size.png
+%%DATADIR%%/pixmaps/tgimg/l_eye/l_eye_bulb_up.png
+%%DATADIR%%/pixmaps/tgimg/l_eye/l_eye_center_height_max.png
+%%DATADIR%%/pixmaps/tgimg/l_eye/l_eye_distance_max.png
+%%DATADIR%%/pixmaps/tgimg/l_eye/l_eye_distance_min.png
+%%DATADIR%%/pixmaps/tgimg/l_eye/l_eye_down.png
+%%DATADIR%%/pixmaps/tgimg/l_eye/l_eye_fold.png
+%%DATADIR%%/pixmaps/tgimg/l_eye/l_eye_fold_double.png
+%%DATADIR%%/pixmaps/tgimg/l_eye/l_eye_fold_lower.png
+%%DATADIR%%/pixmaps/tgimg/l_eye/l_eye_iris_min.png
+%%DATADIR%%/pixmaps/tgimg/l_eye/l_eye_no_bulb.png
+%%DATADIR%%/pixmaps/tgimg/l_eye/l_eye_overhang.png
+%%DATADIR%%/pixmaps/tgimg/l_eye/l_eye_small.png
+%%DATADIR%%/pixmaps/tgimg/l_eye/l_eye_up.png
+%%DATADIR%%/pixmaps/tgimg/l_eye/l_eye_wrinkles.png
+%%DATADIR%%/pixmaps/tgimg/l_eye/l_eyelashes_curve.png
+%%DATADIR%%/pixmaps/tgimg/l_eye/l_eyelashes_long.png
+%%DATADIR%%/pixmaps/tgimg/l_eye/l_eyelashes_none.png
+%%DATADIR%%/pixmaps/tgimg/l_eye/l_eyelids_out.png
+%%DATADIR%%/pixmaps/tgimg/l_eye/l_eyelids_up.png
+%%DATADIR%%/pixmaps/tgimg/l_eye2/l_eye_bulb_rot_down.png
+%%DATADIR%%/pixmaps/tgimg/l_eye2/l_eye_bulb_rot_in.png
+%%DATADIR%%/pixmaps/tgimg/l_eye2/l_eye_bulb_rot_out.png
+%%DATADIR%%/pixmaps/tgimg/l_eye2/l_eye_bulb_rot_up.png
+%%DATADIR%%/pixmaps/tgimg/l_eye2/l_eye_close.png
+%%DATADIR%%/pixmaps/tgimg/l_eye2/l_eye_external_corner_down.png
+%%DATADIR%%/pixmaps/tgimg/l_eye2/l_eye_external_corner_in.png
+%%DATADIR%%/pixmaps/tgimg/l_eye2/l_eye_external_corner_out.png
+%%DATADIR%%/pixmaps/tgimg/l_eye2/l_eye_external_corner_up.png
+%%DATADIR%%/pixmaps/tgimg/l_eye2/l_eye_external_height_max.png
+%%DATADIR%%/pixmaps/tgimg/l_eye2/l_eye_external_rot_in.png
+%%DATADIR%%/pixmaps/tgimg/l_eye2/l_eye_external_rot_out.png
+%%DATADIR%%/pixmaps/tgimg/l_eye2/l_eye_inside.png
+%%DATADIR%%/pixmaps/tgimg/l_eye2/l_eye_internal_corner_down.png
+%%DATADIR%%/pixmaps/tgimg/l_eye2/l_eye_internal_corner_in.png
+%%DATADIR%%/pixmaps/tgimg/l_eye2/l_eye_internal_corner_out.png
+%%DATADIR%%/pixmaps/tgimg/l_eye2/l_eye_internal_corner_up.png
+%%DATADIR%%/pixmaps/tgimg/l_eye2/l_eye_internal_height_max.png
+%%DATADIR%%/pixmaps/tgimg/l_eye2/l_eye_lid_lower_up.png
+%%DATADIR%%/pixmaps/tgimg/l_eye2/l_eye_lid_upper_down.png
+%%DATADIR%%/pixmaps/tgimg/l_eye2/l_eye_lid_upper_half_down.png
+%%DATADIR%%/pixmaps/tgimg/l_eye2/l_eye_lid_upper_up.png
+%%DATADIR%%/pixmaps/tgimg/l_eye2/l_eye_overhang.png
+%%DATADIR%%/pixmaps/tgimg/l_eye2/l_eyebrow_inner_down.png
+%%DATADIR%%/pixmaps/tgimg/l_eye2/l_eyebrow_inner_up.png
+%%DATADIR%%/pixmaps/tgimg/l_eye2/l_eyebrow_outer_up.png
+%%DATADIR%%/pixmaps/tgimg/l_eye2/l_eyebrown_lower_down.png
+%%DATADIR%%/pixmaps/tgimg/l_eye2/l_eyelash_upper_down.png
+%%DATADIR%%/pixmaps/tgimg/l_foot/l_ankle_big.png
+%%DATADIR%%/pixmaps/tgimg/l_foot/l_ankle_fat.png
+%%DATADIR%%/pixmaps/tgimg/l_foot/l_ankle_little.png
+%%DATADIR%%/pixmaps/tgimg/l_foot/l_foot_bigtoe_valgus.png
+%%DATADIR%%/pixmaps/tgimg/l_foot/l_foot_fingers_long.png
+%%DATADIR%%/pixmaps/tgimg/l_foot/l_foot_height_max.png
+%%DATADIR%%/pixmaps/tgimg/l_foot/l_foot_height_min.png
+%%DATADIR%%/pixmaps/tgimg/l_foot/l_foot_long.png
+%%DATADIR%%/pixmaps/tgimg/l_foot/l_foot_plantare_down.png
+%%DATADIR%%/pixmaps/tgimg/l_foot/l_foot_plantare_up.png
+%%DATADIR%%/pixmaps/tgimg/l_foot/l_foot_scrawny.png
+%%DATADIR%%/pixmaps/tgimg/l_foot/l_foot_short.png
+%%DATADIR%%/pixmaps/tgimg/l_foot/l_foot_width_max.png
+%%DATADIR%%/pixmaps/tgimg/l_foot/l_foot_width_min.png
+%%DATADIR%%/pixmaps/tgimg/l_foot/l_heel_none.png
+%%DATADIR%%/pixmaps/tgimg/l_forefinger/l_height_max_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/l_forefinger/l_height_min_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/l_forefinger/l_lenght_max_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/l_forefinger/l_lenght_min_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/l_forefinger/l_nail_cut_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/l_forefinger/l_nail_cut_smooth_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/l_forefinger/l_nail_lenght_max_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/l_forefinger/l_nail_lenght_min_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/l_forefinger/l_nail_lenght_out_max_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/l_forefinger/l_nail_width_max_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/l_forefinger/l_nail_width_min_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/l_forefinger/l_width_max_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/l_forefinger/l_width_min_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/l_hand/l_hand_height_max.png
+%%DATADIR%%/pixmaps/tgimg/l_hand/l_hand_height_min.png
+%%DATADIR%%/pixmaps/tgimg/l_hand/l_hand_lenght_max.png
+%%DATADIR%%/pixmaps/tgimg/l_hand/l_hand_lenght_min.png
+%%DATADIR%%/pixmaps/tgimg/l_hand/l_hand_width_max.png
+%%DATADIR%%/pixmaps/tgimg/l_hand/l_hand_width_min.png
+%%DATADIR%%/pixmaps/tgimg/l_hand2/l_hand_scrawny.png
+%%DATADIR%%/pixmaps/tgimg/l_littlefinger/l_height_max_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/l_littlefinger/l_height_min_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/l_littlefinger/l_lenght_max_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/l_littlefinger/l_lenght_min_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/l_littlefinger/l_nail_cut_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/l_littlefinger/l_nail_cut_smooth_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/l_littlefinger/l_nail_lenght_max_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/l_littlefinger/l_nail_lenght_min_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/l_littlefinger/l_nail_lenght_out_max_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/l_littlefinger/l_nail_width_max_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/l_littlefinger/l_nail_width_min_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/l_littlefinger/l_width_max_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/l_littlefinger/l_width_min_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/l_lower_arm/l_lower_arm_fat.png
+%%DATADIR%%/pixmaps/tgimg/l_lower_arm/l_lower_arm_height_min.png
+%%DATADIR%%/pixmaps/tgimg/l_lower_arm/l_lower_arm_long.png
+%%DATADIR%%/pixmaps/tgimg/l_lower_arm/l_lower_arm_muscular.png
+%%DATADIR%%/pixmaps/tgimg/l_lower_arm/l_lower_arm_scrawny.png
+%%DATADIR%%/pixmaps/tgimg/l_lower_arm/l_lower_arm_short.png
+%%DATADIR%%/pixmaps/tgimg/l_lower_arm/l_lower_arm_width_min.png
+%%DATADIR%%/pixmaps/tgimg/l_lower_arm/l_lower_arm_wrist_muscolar.png
+%%DATADIR%%/pixmaps/tgimg/l_lower_arm/l_wrist_big.png
+%%DATADIR%%/pixmaps/tgimg/l_lower_arm/l_wrist_small.png
+%%DATADIR%%/pixmaps/tgimg/l_lower_leg/l_calf_muscular.png
+%%DATADIR%%/pixmaps/tgimg/l_lower_leg/l_leg_lower_convex.png
+%%DATADIR%%/pixmaps/tgimg/l_lower_leg/l_leg_upper_convex.png
+%%DATADIR%%/pixmaps/tgimg/l_lower_leg/l_leg_x_deform.png
+%%DATADIR%%/pixmaps/tgimg/l_lower_leg/l_lower_leg_depth_min.png
+%%DATADIR%%/pixmaps/tgimg/l_lower_leg/l_lower_leg_extralong.png
+%%DATADIR%%/pixmaps/tgimg/l_lower_leg/l_lower_leg_fat.png
+%%DATADIR%%/pixmaps/tgimg/l_lower_leg/l_lower_leg_height_min.png
+%%DATADIR%%/pixmaps/tgimg/l_lower_leg/l_lower_leg_long.png
+%%DATADIR%%/pixmaps/tgimg/l_lower_leg/l_lower_leg_natural_arc.png
+%%DATADIR%%/pixmaps/tgimg/l_lower_leg/l_lower_leg_scrawny.png
+%%DATADIR%%/pixmaps/tgimg/l_lower_leg/l_lower_leg_width_min.png
+%%DATADIR%%/pixmaps/tgimg/l_middlefinger/l_height_max_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/l_middlefinger/l_height_min_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/l_middlefinger/l_lenght_max_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/l_middlefinger/l_lenght_min_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/l_middlefinger/l_nail_cut_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/l_middlefinger/l_nail_cut_smooth_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/l_middlefinger/l_nail_lenght_max_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/l_middlefinger/l_nail_lenght_min_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/l_middlefinger/l_nail_lenght_out_max_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/l_middlefinger/l_nail_width_max_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/l_middlefinger/l_nail_width_min_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/l_middlefinger/l_width_max_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/l_middlefinger/l_width_min_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/l_pollex/l_height_max_pollex.png
+%%DATADIR%%/pixmaps/tgimg/l_pollex/l_height_min_pollex.png
+%%DATADIR%%/pixmaps/tgimg/l_pollex/l_lenght_max_pollex.png
+%%DATADIR%%/pixmaps/tgimg/l_pollex/l_lenght_min_pollex.png
+%%DATADIR%%/pixmaps/tgimg/l_pollex/l_nail_cut_pollex.png
+%%DATADIR%%/pixmaps/tgimg/l_pollex/l_nail_cut_smooth_pollex.png
+%%DATADIR%%/pixmaps/tgimg/l_pollex/l_nail_lenght_max_pollex.png
+%%DATADIR%%/pixmaps/tgimg/l_pollex/l_nail_lenght_min_pollex.png
+%%DATADIR%%/pixmaps/tgimg/l_pollex/l_nail_lenght_out_max_pollex.png
+%%DATADIR%%/pixmaps/tgimg/l_pollex/l_nail_width_max_pollex.png
+%%DATADIR%%/pixmaps/tgimg/l_pollex/l_nail_width_min_pollex.png
+%%DATADIR%%/pixmaps/tgimg/l_pollex/l_width_max_pollex.png
+%%DATADIR%%/pixmaps/tgimg/l_pollex/l_width_min_pollex.png
+%%DATADIR%%/pixmaps/tgimg/l_ringfinger/l_height_max_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/l_ringfinger/l_height_min_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/l_ringfinger/l_lenght_max_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/l_ringfinger/l_lenght_min_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/l_ringfinger/l_nail_cut_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/l_ringfinger/l_nail_cut_smooth_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/l_ringfinger/l_nail_lenght_max_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/l_ringfinger/l_nail_lenght_min_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/l_ringfinger/l_nail_lenght_out_max_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/l_ringfinger/l_nail_width_max_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/l_ringfinger/l_nail_width_min_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/l_ringfinger/l_width_max_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/l_ringfinger/l_width_min_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/l_shoulder/l_deltoid_muscular.png
+%%DATADIR%%/pixmaps/tgimg/l_shoulder/l_deltoid_scrawny.png
+%%DATADIR%%/pixmaps/tgimg/l_shoulder/l_shoulder_depth_min.png
+%%DATADIR%%/pixmaps/tgimg/l_shoulder/l_shoulder_lenght_max.png
+%%DATADIR%%/pixmaps/tgimg/l_shoulder/l_shoulder_lenght_min.png
+%%DATADIR%%/pixmaps/tgimg/l_shoulder/l_shoulder_min.png
+%%DATADIR%%/pixmaps/tgimg/l_shoulder/l_shoulder_move_backward.png
+%%DATADIR%%/pixmaps/tgimg/l_shoulder/l_shoulder_move_down.png
+%%DATADIR%%/pixmaps/tgimg/l_shoulder/l_shoulder_move_down2.png
+%%DATADIR%%/pixmaps/tgimg/l_shoulder/l_shoulder_move_forward.png
+%%DATADIR%%/pixmaps/tgimg/l_shoulder/l_shoulder_move_sideways_in.png
+%%DATADIR%%/pixmaps/tgimg/l_shoulder/l_shoulder_move_sideways_out.png
+%%DATADIR%%/pixmaps/tgimg/l_shoulder/l_shoulder_move_up.png
+%%DATADIR%%/pixmaps/tgimg/l_shoulder/l_shoulder_move_up2.png
+%%DATADIR%%/pixmaps/tgimg/l_shoulder/l_shoulder_scapula_move_backward.png
+%%DATADIR%%/pixmaps/tgimg/l_shoulder/l_shoulder_width.png
+%%DATADIR%%/pixmaps/tgimg/l_shoulder/l_trapezious_down.png
+%%DATADIR%%/pixmaps/tgimg/l_upper_arm/l_armpit_width.png
+%%DATADIR%%/pixmaps/tgimg/l_upper_arm/l_biceps_muscular.png
+%%DATADIR%%/pixmaps/tgimg/l_upper_arm/l_triceps.png
+%%DATADIR%%/pixmaps/tgimg/l_upper_arm/l_upper_arm_elbow_big.png
+%%DATADIR%%/pixmaps/tgimg/l_upper_arm/l_upper_arm_elbow_small.png
+%%DATADIR%%/pixmaps/tgimg/l_upper_arm/l_upper_arm_fat.png
+%%DATADIR%%/pixmaps/tgimg/l_upper_arm/l_upper_arm_flabby.png
+%%DATADIR%%/pixmaps/tgimg/l_upper_arm/l_upper_arm_height_min.png
+%%DATADIR%%/pixmaps/tgimg/l_upper_arm/l_upper_arm_long.png
+%%DATADIR%%/pixmaps/tgimg/l_upper_arm/l_upper_arm_scrawny.png
+%%DATADIR%%/pixmaps/tgimg/l_upper_arm/l_upper_arm_short.png
+%%DATADIR%%/pixmaps/tgimg/l_upper_arm/l_upper_arm_width_min.png
+%%DATADIR%%/pixmaps/tgimg/l_upper_leg/l_femoris_muscular.png
+%%DATADIR%%/pixmaps/tgimg/l_upper_leg/l_knee_big.png
+%%DATADIR%%/pixmaps/tgimg/l_upper_leg/l_knee_external_min.png
+%%DATADIR%%/pixmaps/tgimg/l_upper_leg/l_knee_small.png
+%%DATADIR%%/pixmaps/tgimg/l_upper_leg/l_knee_smooth.png
+%%DATADIR%%/pixmaps/tgimg/l_upper_leg/l_leg_upper_convex.png
+%%DATADIR%%/pixmaps/tgimg/l_upper_leg/l_quadricipes_muscular.png
+%%DATADIR%%/pixmaps/tgimg/l_upper_leg/l_thigh_external_max.png
+%%DATADIR%%/pixmaps/tgimg/l_upper_leg/l_thigh_internal_max.png
+%%DATADIR%%/pixmaps/tgimg/l_upper_leg/l_thigh_smooth.png
+%%DATADIR%%/pixmaps/tgimg/l_upper_leg/l_upper_back_leg_fat.png
+%%DATADIR%%/pixmaps/tgimg/l_upper_leg/l_upper_leg_cellulitis.png
+%%DATADIR%%/pixmaps/tgimg/l_upper_leg/l_upper_leg_fat.png
+%%DATADIR%%/pixmaps/tgimg/l_upper_leg/l_upper_leg_height_min.png
+%%DATADIR%%/pixmaps/tgimg/l_upper_leg/l_upper_leg_lenght_min.png
+%%DATADIR%%/pixmaps/tgimg/l_upper_leg/l_upper_leg_long.png
+%%DATADIR%%/pixmaps/tgimg/l_upper_leg/l_upper_leg_scrawny.png
+%%DATADIR%%/pixmaps/tgimg/l_upper_leg/l_upper_leg_width_min.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_left_canine_in.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_left_canine_left_rotated.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_left_canine_long.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_left_canine_none.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_left_canine_out.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_left_canine_right_rotated.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_left_central_incisor_in.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_left_central_incisor_left_rotated.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_left_central_incisor_long.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_left_central_incisor_none.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_left_central_incisor_out.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_left_central_incisor_right_rotated.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_left_lateral_incisor_in.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_left_lateral_incisor_left_rotated.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_left_lateral_incisor_long.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_left_lateral_incisor_none.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_left_lateral_incisor_out.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_left_lateral_incisor_right_rotated.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_right_canine_depth_min.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_right_canine_in.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_right_canine_left_rotated.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_right_canine_long.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_right_canine_none.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_right_canine_out.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_right_canine_right_rotated.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_right_canine_width_min.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_right_central_incisor_depth_min.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_right_central_incisor_in.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_right_central_incisor_left_rotated.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_right_central_incisor_long.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_right_central_incisor_none.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_right_central_incisor_out.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_right_central_incisor_right_rotated.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_right_central_incisor_width_min.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_right_lateral_incisor_depth_min.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_right_lateral_incisor_in.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_right_lateral_incisor_left_rotated.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_right_lateral_incisor_long.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_right_lateral_incisor_none.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_right_lateral_incisor_out.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_right_lateral_incisor_right_rotated.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_center/teeth_right_lateral_incisor_width_min.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_left/teeth_left_first_molar_in.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_left/teeth_left_first_molar_left_rotated.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_left/teeth_left_first_molar_long.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_left/teeth_left_first_molar_none.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_left/teeth_left_first_molar_out.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_left/teeth_left_first_molar_right_rotated.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_left/teeth_left_first_premolar_in.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_left/teeth_left_first_premolar_left_rotated.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_left/teeth_left_first_premolar_long.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_left/teeth_left_first_premolar_none.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_left/teeth_left_first_premolar_out.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_left/teeth_left_first_premolar_right_rotated.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_left/teeth_left_second_molar_in.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_left/teeth_left_second_molar_left_rotated.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_left/teeth_left_second_molar_long.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_left/teeth_left_second_molar_none.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_left/teeth_left_second_molar_out.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_left/teeth_left_second_molar_right_rotated.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_left/teeth_left_second_premolar_in.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_left/teeth_left_second_premolar_left_rotated.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_left/teeth_left_second_premolar_long.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_left/teeth_left_second_premolar_none.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_left/teeth_left_second_premolar_out.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_left/teeth_left_second_premolar_right_rotated.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_left/teeth_left_third_molar_in.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_left/teeth_left_third_molar_left_rotated.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_left/teeth_left_third_molar_long.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_left/teeth_left_third_molar_none.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_left/teeth_left_third_molar_out.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_left/teeth_left_third_molar_right_rotated.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_right/teeth_right_first_molar_depth_min.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_right/teeth_right_first_molar_in.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_right/teeth_right_first_molar_left_rotated.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_right/teeth_right_first_molar_long.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_right/teeth_right_first_molar_none.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_right/teeth_right_first_molar_out.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_right/teeth_right_first_molar_right_rotated.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_right/teeth_right_first_molar_width_min.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_right/teeth_right_first_premolar_depth_min.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_right/teeth_right_first_premolar_in.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_right/teeth_right_first_premolar_left_rotated.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_right/teeth_right_first_premolar_long.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_right/teeth_right_first_premolar_none.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_right/teeth_right_first_premolar_out.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_right/teeth_right_first_premolar_right_rotated.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_right/teeth_right_first_premolar_width_min.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_right/teeth_right_second_molar_depth_min.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_right/teeth_right_second_molar_in.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_right/teeth_right_second_molar_left_rotated.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_right/teeth_right_second_molar_long.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_right/teeth_right_second_molar_none.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_right/teeth_right_second_molar_out.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_right/teeth_right_second_molar_right_rotated.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_right/teeth_right_second_molar_width_min.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_right/teeth_right_second_premolar_depth_min.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_right/teeth_right_second_premolar_in.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_right/teeth_right_second_premolar_left_rotated.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_right/teeth_right_second_premolar_long.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_right/teeth_right_second_premolar_none.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_right/teeth_right_second_premolar_out.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_right/teeth_right_second_premolar_right_rotated.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_right/teeth_right_second_premolar_width_min.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_right/teeth_right_third_molar_depth_min.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_right/teeth_right_third_molar_in.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_right/teeth_right_third_molar_left_rotated.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_right/teeth_right_third_molar_long.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_right/teeth_right_third_molar_none.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_right/teeth_right_third_molar_out.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_right/teeth_right_third_molar_right_rotated.png
+%%DATADIR%%/pixmaps/tgimg/lower_teeth_right/teeth_right_third_molar_width_min.png
+%%DATADIR%%/pixmaps/tgimg/mouth/lower_lips_on_in.png
+%%DATADIR%%/pixmaps/tgimg/mouth/lower_lips_out.png
+%%DATADIR%%/pixmaps/tgimg/mouth/mouth_M_shape.png
+%%DATADIR%%/pixmaps/tgimg/mouth/mouth_angle_down.png
+%%DATADIR%%/pixmaps/tgimg/mouth/mouth_angle_up.png
+%%DATADIR%%/pixmaps/tgimg/mouth/mouth_chin_distance_long.png
+%%DATADIR%%/pixmaps/tgimg/mouth/mouth_chin_distance_short.png
+%%DATADIR%%/pixmaps/tgimg/mouth/mouth_close.png
+%%DATADIR%%/pixmaps/tgimg/mouth/mouth_height.png
+%%DATADIR%%/pixmaps/tgimg/mouth/mouth_height_max.png
+%%DATADIR%%/pixmaps/tgimg/mouth/mouth_height_min.png
+%%DATADIR%%/pixmaps/tgimg/mouth/mouth_lip_lower_depress.png
+%%DATADIR%%/pixmaps/tgimg/mouth/mouth_lip_upper_raise.png
+%%DATADIR%%/pixmaps/tgimg/mouth/mouth_lips_deflated.png
+%%DATADIR%%/pixmaps/tgimg/mouth/mouth_lips_funnel.png
+%%DATADIR%%/pixmaps/tgimg/mouth/mouth_lips_inflated.png
+%%DATADIR%%/pixmaps/tgimg/mouth/mouth_lips_pressor.png
+%%DATADIR%%/pixmaps/tgimg/mouth/mouth_lips_shut.png
+%%DATADIR%%/pixmaps/tgimg/mouth/mouth_lips_suck.png
+%%DATADIR%%/pixmaps/tgimg/mouth/mouth_lower_lip_bite.png
+%%DATADIR%%/pixmaps/tgimg/mouth/mouth_nariccia_center_in.png
+%%DATADIR%%/pixmaps/tgimg/mouth/mouth_nasolabial_center_in.png
+%%DATADIR%%/pixmaps/tgimg/mouth/mouth_nasolabial_center_out.png
+%%DATADIR%%/pixmaps/tgimg/mouth/mouth_nasolabial_mid_in.png
+%%DATADIR%%/pixmaps/tgimg/mouth/mouth_nasolabial_mid_out.png
+%%DATADIR%%/pixmaps/tgimg/mouth/mouth_nasolabial_side_in.png
+%%DATADIR%%/pixmaps/tgimg/mouth/mouth_nasolabial_side_out.png
+%%DATADIR%%/pixmaps/tgimg/mouth/mouth_nasolabial_up.png
+%%DATADIR%%/pixmaps/tgimg/mouth/mouth_thin.png
+%%DATADIR%%/pixmaps/tgimg/mouth/mouth_upper_lip_bite.png
+%%DATADIR%%/pixmaps/tgimg/mouth/mouth_w_shape.png
+%%DATADIR%%/pixmaps/tgimg/mouth/mouth_wide.png
+%%DATADIR%%/pixmaps/tgimg/mouth/mouth_width_min.png
+%%DATADIR%%/pixmaps/tgimg/mouth/upper_lips_in.png
+%%DATADIR%%/pixmaps/tgimg/mouth/upper_lips_out.png
+%%DATADIR%%/pixmaps/tgimg/mouth2/mouth_lower _lips_point_in.png
+%%DATADIR%%/pixmaps/tgimg/mouth2/mouth_lower_lips_base_down.png
+%%DATADIR%%/pixmaps/tgimg/mouth2/mouth_lower_lips_base_up.png
+%%DATADIR%%/pixmaps/tgimg/mouth2/mouth_lower_lips_deflated.png
+%%DATADIR%%/pixmaps/tgimg/mouth2/mouth_lower_lips_inflated.png
+%%DATADIR%%/pixmaps/tgimg/mouth2/mouth_lower_lips_left_down.png
+%%DATADIR%%/pixmaps/tgimg/mouth2/mouth_lower_lips_left_up.png
+%%DATADIR%%/pixmaps/tgimg/mouth2/mouth_lower_lips_mid_up.png
+%%DATADIR%%/pixmaps/tgimg/mouth2/mouth_lower_lips_point_down.png
+%%DATADIR%%/pixmaps/tgimg/mouth2/mouth_lower_lips_point_out.png
+%%DATADIR%%/pixmaps/tgimg/mouth2/mouth_lower_lips_point_up.png
+%%DATADIR%%/pixmaps/tgimg/mouth2/mouth_lower_lips_right_down.png
+%%DATADIR%%/pixmaps/tgimg/mouth2/mouth_lower_lips_right_up.png
+%%DATADIR%%/pixmaps/tgimg/mouth2/mouth_lower_lips_thin.png
+%%DATADIR%%/pixmaps/tgimg/mouth2/mouth_lower_lips_wide.png
+%%DATADIR%%/pixmaps/tgimg/mouth2/mouth_side_left.png
+%%DATADIR%%/pixmaps/tgimg/mouth2/mouth_side_right.png
+%%DATADIR%%/pixmaps/tgimg/mouth2/r_lips_down.png
+%%DATADIR%%/pixmaps/tgimg/mouth2/r_lower_lips_up.png
+%%DATADIR%%/pixmaps/tgimg/mouth3/mouth_upper_lips_base_down.png
+%%DATADIR%%/pixmaps/tgimg/mouth3/mouth_upper_lips_base_up.png
+%%DATADIR%%/pixmaps/tgimg/mouth3/mouth_upper_lips_center_down.png
+%%DATADIR%%/pixmaps/tgimg/mouth3/mouth_upper_lips_concave.png
+%%DATADIR%%/pixmaps/tgimg/mouth3/mouth_upper_lips_convex.png
+%%DATADIR%%/pixmaps/tgimg/mouth3/mouth_upper_lips_deflated.png
+%%DATADIR%%/pixmaps/tgimg/mouth3/mouth_upper_lips_inflated.png
+%%DATADIR%%/pixmaps/tgimg/mouth3/mouth_upper_lips_left_down.png
+%%DATADIR%%/pixmaps/tgimg/mouth3/mouth_upper_lips_left_up.png
+%%DATADIR%%/pixmaps/tgimg/mouth3/mouth_upper_lips_mid_down.png
+%%DATADIR%%/pixmaps/tgimg/mouth3/mouth_upper_lips_point.png
+%%DATADIR%%/pixmaps/tgimg/mouth3/mouth_upper_lips_point_closeX.png
+%%DATADIR%%/pixmaps/tgimg/mouth3/mouth_upper_lips_point_down.png
+%%DATADIR%%/pixmaps/tgimg/mouth3/mouth_upper_lips_point_in.png
+%%DATADIR%%/pixmaps/tgimg/mouth3/mouth_upper_lips_point_inflatted.png
+%%DATADIR%%/pixmaps/tgimg/mouth3/mouth_upper_lips_point_largeX.png
+%%DATADIR%%/pixmaps/tgimg/mouth3/mouth_upper_lips_point_out.png
+%%DATADIR%%/pixmaps/tgimg/mouth3/mouth_upper_lips_right_down.png
+%%DATADIR%%/pixmaps/tgimg/mouth3/mouth_upper_lips_right_up.png
+%%DATADIR%%/pixmaps/tgimg/mouth3/mouth_upper_lips_thin.png
+%%DATADIR%%/pixmaps/tgimg/mouth3/mouth_upper_lips_wide.png
+%%DATADIR%%/pixmaps/tgimg/mouth3/r_upper_lips_down.png
+%%DATADIR%%/pixmaps/tgimg/mouth3/r_upper_lips_up.png
+%%DATADIR%%/pixmaps/tgimg/neck/mid_neck_narrow.png
+%%DATADIR%%/pixmaps/tgimg/neck/neck_apple_none.png
+%%DATADIR%%/pixmaps/tgimg/neck/neck_apple_prominent.png
+%%DATADIR%%/pixmaps/tgimg/neck/neck_backward.png
+%%DATADIR%%/pixmaps/tgimg/neck/neck_base_min.png
+%%DATADIR%%/pixmaps/tgimg/neck/neck_fat.png
+%%DATADIR%%/pixmaps/tgimg/neck/neck_long.png
+%%DATADIR%%/pixmaps/tgimg/neck/neck_muscular.png
+%%DATADIR%%/pixmaps/tgimg/neck/neck_old.png
+%%DATADIR%%/pixmaps/tgimg/neck/neck_out.png
+%%DATADIR%%/pixmaps/tgimg/neck/neck_scrawny.png
+%%DATADIR%%/pixmaps/tgimg/neck/neck_short.png
+%%DATADIR%%/pixmaps/tgimg/neck/neck_smooth.png
+%%DATADIR%%/pixmaps/tgimg/neck/neck_width_min.png
+%%DATADIR%%/pixmaps/tgimg/nose/nose_base_forward.png
+%%DATADIR%%/pixmaps/tgimg/nose/nose_base_narrow.png
+%%DATADIR%%/pixmaps/tgimg/nose/nose_base_smooth.png
+%%DATADIR%%/pixmaps/tgimg/nose/nose_base_wide.png
+%%DATADIR%%/pixmaps/tgimg/nose/nose_bridge_down.png
+%%DATADIR%%/pixmaps/tgimg/nose/nose_bridge_in.png
+%%DATADIR%%/pixmaps/tgimg/nose/nose_bridge_left.png
+%%DATADIR%%/pixmaps/tgimg/nose/nose_bridge_narrow.png
+%%DATADIR%%/pixmaps/tgimg/nose/nose_bridge_out.png
+%%DATADIR%%/pixmaps/tgimg/nose/nose_bridge_right.png
+%%DATADIR%%/pixmaps/tgimg/nose/nose_bridge_smooth.png
+%%DATADIR%%/pixmaps/tgimg/nose/nose_bridge_up.png
+%%DATADIR%%/pixmaps/tgimg/nose/nose_bridge_wide.png
+%%DATADIR%%/pixmaps/tgimg/nose/nose_flat.png
+%%DATADIR%%/pixmaps/tgimg/nose/nose_height_max.png
+%%DATADIR%%/pixmaps/tgimg/nose/nose_height_min.png
+%%DATADIR%%/pixmaps/tgimg/nose/nose_long.png
+%%DATADIR%%/pixmaps/tgimg/nose/nose_none.png
+%%DATADIR%%/pixmaps/tgimg/nose/nose_sellion_deep.png
+%%DATADIR%%/pixmaps/tgimg/nose/nose_sellion_down.png
+%%DATADIR%%/pixmaps/tgimg/nose/nose_sellion_narrow.png
+%%DATADIR%%/pixmaps/tgimg/nose/nose_sellion_shallow.png
+%%DATADIR%%/pixmaps/tgimg/nose/nose_sellion_smooth.png
+%%DATADIR%%/pixmaps/tgimg/nose/nose_sellion_up.png
+%%DATADIR%%/pixmaps/tgimg/nose/nose_sellion_wide.png
+%%DATADIR%%/pixmaps/tgimg/nose/nose_smooth.png
+%%DATADIR%%/pixmaps/tgimg/nose/nose_thin.png
+%%DATADIR%%/pixmaps/tgimg/nose/nose_tip_bulbous.png
+%%DATADIR%%/pixmaps/tgimg/nose/nose_tip_down.png
+%%DATADIR%%/pixmaps/tgimg/nose/nose_tip_forward.png
+%%DATADIR%%/pixmaps/tgimg/nose/nose_tip_in.png
+%%DATADIR%%/pixmaps/tgimg/nose/nose_tip_left.png
+%%DATADIR%%/pixmaps/tgimg/nose/nose_tip_out.png
+%%DATADIR%%/pixmaps/tgimg/nose/nose_tip_right.png
+%%DATADIR%%/pixmaps/tgimg/nose/nose_tip_smooth.png
+%%DATADIR%%/pixmaps/tgimg/nose/nose_wide.png
+%%DATADIR%%/pixmaps/tgimg/nose/nostril_long.png
+%%DATADIR%%/pixmaps/tgimg/nose/nostril_round.png
+%%DATADIR%%/pixmaps/tgimg/nose/nostrils_down.png
+%%DATADIR%%/pixmaps/tgimg/nose/nostrils_holes_small.png
+%%DATADIR%%/pixmaps/tgimg/nose/nostrils_large.png
+%%DATADIR%%/pixmaps/tgimg/nose/nostrils_left_cut1.png
+%%DATADIR%%/pixmaps/tgimg/nose/nostrils_left_cut2.png
+%%DATADIR%%/pixmaps/tgimg/nose/nostrils_long.png
+%%DATADIR%%/pixmaps/tgimg/nose/nostrils_narrow.png
+%%DATADIR%%/pixmaps/tgimg/nose/nostrils_right_cut1.png
+%%DATADIR%%/pixmaps/tgimg/nose/nostrils_right_cut2.png
+%%DATADIR%%/pixmaps/tgimg/nose/nostrils_round.png
+%%DATADIR%%/pixmaps/tgimg/nose/nostrils_small.png
+%%DATADIR%%/pixmaps/tgimg/nose/nostrils_tilt_up.png
+%%DATADIR%%/pixmaps/tgimg/nose/nostrils_up.png
+%%DATADIR%%/pixmaps/tgimg/nose/tip_narrow.png
+%%DATADIR%%/pixmaps/tgimg/nose/tip_up.png
+%%DATADIR%%/pixmaps/tgimg/nose/tip_wide.png
+%%DATADIR%%/pixmaps/tgimg/nose2/nose_base_extraforward.png
+%%DATADIR%%/pixmaps/tgimg/nose2/nose_wrinkle.png
+%%DATADIR%%/pixmaps/tgimg/nose2/nostril_compressor.png
+%%DATADIR%%/pixmaps/tgimg/nose2/nostril_dilator.png
+%%DATADIR%%/pixmaps/tgimg/ns_abdomen/abdomen_1hole_front_center_mid.png
+%%DATADIR%%/pixmaps/tgimg/ns_abdomen/abdomen_2holes_front_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_abdomen/abdomen_2holes_front_mid.png
+%%DATADIR%%/pixmaps/tgimg/ns_abdomen/abdomen_2holes_front_side_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_abdomen/abdomen_2holes_front_side_down2.png
+%%DATADIR%%/pixmaps/tgimg/ns_abdomen/abdomen_2holes_front_side_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_abdomen/abdomen_2holes_front_side_up2.png
+%%DATADIR%%/pixmaps/tgimg/ns_abdomen/abdomen_2holes_front_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_abdomen/abdomen_belly_button_ring.png
+%%DATADIR%%/pixmaps/tgimg/ns_abdomen/abdomen_belly_button_stick.png
+%%DATADIR%%/pixmaps/tgimg/ns_abdomen/abdomen_cobra.png
+%%DATADIR%%/pixmaps/tgimg/ns_abdomen/abdomen_front_gill1.png
+%%DATADIR%%/pixmaps/tgimg/ns_abdomen/abdomen_front_gill2.png
+%%DATADIR%%/pixmaps/tgimg/ns_abdomen/abdomen_front_shield.png
+%%DATADIR%%/pixmaps/tgimg/ns_abdomen/abdomen_halfbody_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_abdomen/abdomen_none.png
+%%DATADIR%%/pixmaps/tgimg/ns_abdomen/abdomen_none2.png
+%%DATADIR%%/pixmaps/tgimg/ns_abdomen/abdomen_none_hole.png
+%%DATADIR%%/pixmaps/tgimg/ns_abdomen/abdomen_none_hole_side.png
+%%DATADIR%%/pixmaps/tgimg/ns_abdomen/abdomen_none_scrawny.png
+%%DATADIR%%/pixmaps/tgimg/ns_abdomen/abdomen_ombelico_in.png
+%%DATADIR%%/pixmaps/tgimg/ns_abdomen/abdomen_shield.png
+%%DATADIR%%/pixmaps/tgimg/ns_abdomen/abdomen_twist.png
+%%DATADIR%%/pixmaps/tgimg/ns_abdomen/belly_button_extrabig.png
+%%DATADIR%%/pixmaps/tgimg/ns_abdomen/waist_ant.png
+%%DATADIR%%/pixmaps/tgimg/ns_brow_ridge/brow_puff.png
+%%DATADIR%%/pixmaps/tgimg/ns_brow_ridge/brow_ridge_crown.png
+%%DATADIR%%/pixmaps/tgimg/ns_brow_ridge/brow_ridge_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_brow_ridge/brow_ridge_geom_plane.png
+%%DATADIR%%/pixmaps/tgimg/ns_brow_ridge/brow_ridge_geom_round.png
+%%DATADIR%%/pixmaps/tgimg/ns_brow_ridge/brow_ridge_peak.png
+%%DATADIR%%/pixmaps/tgimg/ns_brow_ridge/brow_ridge_screen_nose.png
+%%DATADIR%%/pixmaps/tgimg/ns_brow_ridge/brow_ridge_wattle_center.png
+%%DATADIR%%/pixmaps/tgimg/ns_brow_ridge/brow_ridge_wattle_side.png
+%%DATADIR%%/pixmaps/tgimg/ns_chin_jaw/chin_branchia_flat.png
+%%DATADIR%%/pixmaps/tgimg/ns_chin_jaw/chin_geom_cilinder.png
+%%DATADIR%%/pixmaps/tgimg/ns_chin_jaw/chin_geom_cone.png
+%%DATADIR%%/pixmaps/tgimg/ns_chin_jaw/chin_geom_parallelep.png
+%%DATADIR%%/pixmaps/tgimg/ns_chin_jaw/chin_geom_piramid.png
+%%DATADIR%%/pixmaps/tgimg/ns_chin_jaw/chin_geom_plane.png
+%%DATADIR%%/pixmaps/tgimg/ns_chin_jaw/chin_geom_round.png
+%%DATADIR%%/pixmaps/tgimg/ns_chin_jaw/chin_mid_protrunding.png
+%%DATADIR%%/pixmaps/tgimg/ns_chin_jaw/chin_screen_mouth.png
+%%DATADIR%%/pixmaps/tgimg/ns_chin_jaw/chin_sideways_protrunding.png
+%%DATADIR%%/pixmaps/tgimg/ns_chin_jaw/chin_wattle_center.png
+%%DATADIR%%/pixmaps/tgimg/ns_chin_jaw/jaw_beard.png
+%%DATADIR%%/pixmaps/tgimg/ns_chin_jaw/jaw_beard1.png
+%%DATADIR%%/pixmaps/tgimg/ns_chin_jaw/jaw_beard2.png
+%%DATADIR%%/pixmaps/tgimg/ns_chin_jaw/jaw_beard3.png
+%%DATADIR%%/pixmaps/tgimg/ns_chin_jaw/jaw_beard4.png
+%%DATADIR%%/pixmaps/tgimg/ns_chin_jaw/jaw_beard_demon_sideboard.png
+%%DATADIR%%/pixmaps/tgimg/ns_chin_jaw/jaw_beard_flat.png
+%%DATADIR%%/pixmaps/tgimg/ns_chin_jaw/jaw_beard_long.png
+%%DATADIR%%/pixmaps/tgimg/ns_chin_jaw/jaw_beard_long_cut.png
+%%DATADIR%%/pixmaps/tgimg/ns_chin_jaw/jaw_beard_long_point.png
+%%DATADIR%%/pixmaps/tgimg/ns_chin_jaw/jaw_beard_sideboard.png
+%%DATADIR%%/pixmaps/tgimg/ns_chin_jaw/jaw_branchia_flat.png
+%%DATADIR%%/pixmaps/tgimg/ns_chin_jaw/jaw_branchia_flat_front.png
+%%DATADIR%%/pixmaps/tgimg/ns_chin_jaw/jaw_branchia_flat_mid.png
+%%DATADIR%%/pixmaps/tgimg/ns_chin_jaw/jaw_branchia_flat_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_chin_jaw/jaw_extradown.png
+%%DATADIR%%/pixmaps/tgimg/ns_chin_jaw/jaw_orang.png
+%%DATADIR%%/pixmaps/tgimg/ns_chin_jaw/jaw_screen_ear.png
+%%DATADIR%%/pixmaps/tgimg/ns_chin_jaw/jaw_wattle_center.png
+%%DATADIR%%/pixmaps/tgimg/ns_chin_jaw/jaw_wattle_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_chin_jaw/jaw_wattle_front.png
+%%DATADIR%%/pixmaps/tgimg/ns_chin_jaw/jaw_wattle_side.png
+%%DATADIR%%/pixmaps/tgimg/ns_chin_jaw/moustace1.png
+%%DATADIR%%/pixmaps/tgimg/ns_chin_jaw/moustace2.png
+%%DATADIR%%/pixmaps/tgimg/ns_chin_jaw/moustace3.png
+%%DATADIR%%/pixmaps/tgimg/ns_chin_jaw/moustace4.png
+%%DATADIR%%/pixmaps/tgimg/ns_eyes/ciclope_base.png
+%%DATADIR%%/pixmaps/tgimg/ns_eyes/ciclope_cheek_down_z.png
+%%DATADIR%%/pixmaps/tgimg/ns_eyes/ciclope_cheek_out_x.png
+%%DATADIR%%/pixmaps/tgimg/ns_eyes/ciclope_cheek_out_y.png
+%%DATADIR%%/pixmaps/tgimg/ns_eyes/ciclope_cheek_up_z.png
+%%DATADIR%%/pixmaps/tgimg/ns_eyes/ciclope_head_height_max.png
+%%DATADIR%%/pixmaps/tgimg/ns_eyes/ciclope_head_height_min.png
+%%DATADIR%%/pixmaps/tgimg/ns_eyes/ciclope_head_lenght_max.png
+%%DATADIR%%/pixmaps/tgimg/ns_eyes/ciclope_head_lenght_min.png
+%%DATADIR%%/pixmaps/tgimg/ns_eyes/ciclope_head_upper_height_max..png
+%%DATADIR%%/pixmaps/tgimg/ns_eyes/ciclope_head_upper_height_min.png
+%%DATADIR%%/pixmaps/tgimg/ns_eyes/ciclope_head_width_max.png
+%%DATADIR%%/pixmaps/tgimg/ns_eyes/ciclope_head_width_min.png
+%%DATADIR%%/pixmaps/tgimg/ns_eyes/ciclope_nose_mars_no_nostrill.png
+%%DATADIR%%/pixmaps/tgimg/ns_eyes/ciclope_nose_mars_nostrill.png
+%%DATADIR%%/pixmaps/tgimg/ns_eyes/eye_protrunding_line.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_3promin.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_3promin_top.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_cap.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_crack_center.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_crack_lateral.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_crack_mid.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_crest.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_crown.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_crown2.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_crown_3point.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_crown_3point_sharp.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_crown_7point.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_crown_mid.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_crown_mid_3point.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_crown_mid_5point.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_crown_mid_flat.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_crown_mid_triangular.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_crown_puff.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_geom_bicone.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_geom_biflap.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_geom_bihorn.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_geom_biparallel.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_geom_bipyramid.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_geom_bisphere.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_geom_cone.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_geom_flat.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_geom_fractal.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_geom_ogiva_head.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_geom_pharaon.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_geom_pyramid.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_geom_sphere.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_geom_tube.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_geom_twist.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_geom_twist2.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_gill1.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_gill2.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_gill3.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_helmet.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_horn_center.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_horn_lateral.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_horn_mid.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_middle_prominence.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_middle_prominence_in.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_narrow.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_none_hole_front.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_none_hole_top.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_peack_puff.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_point_foreward.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_promin_center.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_protruding_line1.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_protruding_line2.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_protruding_line3.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_protruding_line_long.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_puff.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_screen_eyes_nose.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_screen_eyes_nose2.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_screen_nose_mouth.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_shield.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_squid.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_temple_in.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_temple_out.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_top_fin.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_wattle_center.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_wattle_side.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_wrinkle_puff.png
+%%DATADIR%%/pixmaps/tgimg/ns_forehead/forehead_wrinkle_puff1.png
+%%DATADIR%%/pixmaps/tgimg/ns_head/back_geom_plane.png
+%%DATADIR%%/pixmaps/tgimg/ns_head/back_geom_round.png
+%%DATADIR%%/pixmaps/tgimg/ns_head/face_none_superhero.png
+%%DATADIR%%/pixmaps/tgimg/ns_head/face_none_superhero2.png
+%%DATADIR%%/pixmaps/tgimg/ns_head/head_1hole_back.png
+%%DATADIR%%/pixmaps/tgimg/ns_head/head_2holes_back.png
+%%DATADIR%%/pixmaps/tgimg/ns_head/head_2holes_back2.png
+%%DATADIR%%/pixmaps/tgimg/ns_head/head_2holes_front_center_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_head/head_2holes_front_center_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_head/head_2holes_front_side_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_head/head_2holes_front_side_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_head/head_2holes_side.png
+%%DATADIR%%/pixmaps/tgimg/ns_head/head_2holes_top.png
+%%DATADIR%%/pixmaps/tgimg/ns_head/head_4holes_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_head/head_4holes_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_head/head_baloon.png
+%%DATADIR%%/pixmaps/tgimg/ns_head/head_bihorn_lateral.png
+%%DATADIR%%/pixmaps/tgimg/ns_head/head_bihorn_lateral_curve.png
+%%DATADIR%%/pixmaps/tgimg/ns_head/head_bihorn_lateral_puff.png
+%%DATADIR%%/pixmaps/tgimg/ns_head/head_dicotomy.png
+%%DATADIR%%/pixmaps/tgimg/ns_head/head_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_head/head_face_side.png
+%%DATADIR%%/pixmaps/tgimg/ns_head/head_flat_face.png
+%%DATADIR%%/pixmaps/tgimg/ns_head/head_forward.png
+%%DATADIR%%/pixmaps/tgimg/ns_head/head_none.png
+%%DATADIR%%/pixmaps/tgimg/ns_head/head_protunding_back_long.png
+%%DATADIR%%/pixmaps/tgimg/ns_head/head_protunding_back_long_puff.png
+%%DATADIR%%/pixmaps/tgimg/ns_head/head_protunding_back_long_puff_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_head/head_protunding_back_long_puff_down_large.png
+%%DATADIR%%/pixmaps/tgimg/ns_head/head_protunding_front_wave.png
+%%DATADIR%%/pixmaps/tgimg/ns_head/head_sunray1.png
+%%DATADIR%%/pixmaps/tgimg/ns_head/head_sunray2.png
+%%DATADIR%%/pixmaps/tgimg/ns_head/head_sunray3.png
+%%DATADIR%%/pixmaps/tgimg/ns_head/head_sunray4.png
+%%DATADIR%%/pixmaps/tgimg/ns_head/head_sunray5.png
+%%DATADIR%%/pixmaps/tgimg/ns_head/head_sunray6.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_3promin_back.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_back_fin.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_cone_inverse_close.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_cone_inverse_open.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_crown_back.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_crown_back_2point.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_crown_back_2point_sharp.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_dino_crest_cut_large.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_dino_crest_forward_large.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_dino_crest_forward_narrow.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_dino_crest_large.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_dino_crest_narrow.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_disk.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_disk_foreward.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_face_circle.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_face_circle_3point.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_face_orang.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_face_out_noeyes.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_face_sun.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_flap1.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_flap2.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_flap3.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_flap4.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_flap5.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_geom_ball.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_geom_cube.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_half_back.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_half_flat_back.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_half_front.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_half_in_back.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_half_mid.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_half_skalp_large.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_half_skalp_narrow.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_little_face.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_nobody.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_none_hole.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_point.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_point_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_point_down_large.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_point_puff.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_point_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_point_up_large.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_protrunding_lateral.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_protrunding_lateral_back.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_rice.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_skalp_backward_narrow.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_skalp_narrow.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_upper_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_wattle_back.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_wattle_back_side.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/head_wattle_side.png
+%%DATADIR%%/pixmaps/tgimg/ns_head2/ogiva_head.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_cheek/l_cheeck_hamster.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_cheek/l_cheeck_pincer.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_cheek/l_cheeck_pincer_big.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_cheek/l_cheeck_puff_point.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_cheek/l_cheek_cover_eye3.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_cheek/l_cheek_geom_quod.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_cheek/l_cheek_screen_eye.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_cheek/l_cheek_screen_mouth.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_cheek/l_cheek_screen_nose.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_cheek/l_cheek_wattle_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_cheek/l_cheek_wattle_front.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_cheek/l_cheek_wattle_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_bat2.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_out_point.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_outer.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_paper.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_point_ahead.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_point_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_point_down2.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_puff.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_puff_ball.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_puff_circle.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_puff_circle2.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_puff_comma.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_puff_comma_in.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_puff_cube.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_puff_elephant.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_puff_elf.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_puff_mars.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_puff_moon.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_puff_point.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_puff_point_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_puff_point_down_hole.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_puff_point_hook.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_puff_prisma.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_puff_sharp.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_puff_sharp_inside.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_puff_sphere2.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_puff_sphere3.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_rabbit.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_rabbit2.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_rabbit3.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_rabbit_toon.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_rabbit_toon2.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_radar.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_radar2.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_rot_external.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_rot_vert.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_spak.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_spatula.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_star2_down2.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_star2_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_star2_up2.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_star3.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_star3_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_star3_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_star4_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_star4_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_star5.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_stick.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_stick_quod.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_stick_round.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_stick_shape.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_stick_trian.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_trumpet.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_trumpet2.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_trumpet3.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_wave.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_wing_angel.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_wing_demon.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_witch.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_wiz.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_yar.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_yod.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear/l_ear_yod2.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_back_none.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_bamby.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_bat.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_bell.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_bi_points.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_blend.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_bongo.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_bulb.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_bulb1.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_bulb2.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_bulb3.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_cat.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_cat2.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_cow.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_cow2.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_cow3.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_cow4.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_cow5.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_crater.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_cut.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_cut2.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_cut3.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_demon.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_dog.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_dog2.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_dog3.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_donkey.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_donut.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_donut2.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_dumbo.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_elf.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_fawn.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_flower.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_flower2.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_flower3.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_flower4.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_flower5.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_geom_circle.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_geom_quod.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_geom_triang.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_goat.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_gremlins.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_in_out.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_inner.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_leaf.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_leaf2.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_leaf3.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_little_bear.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_lobe_point_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_lobe_point_out.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_long_round.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_mouse.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_mouse_toon.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_mouse_toon_round.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_mouse_toon_triangle.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_move_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_none.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_none2.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_none3.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_none4.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ear2/l_ear_none5.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/L_eye_none_cilinder_in.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_bulb_2extraup.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_bulb_cilinder.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_bulb_cilinder_toon.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_bulb_cube.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_bulb_cube_toon.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_bulb_depth.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_bulb_extraback.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_bulb_extraforward.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_bulb_extraleft.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_bulb_extraright.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_bulb_extraup.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_bulb_height.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_bulb_none.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_bulb_prisma.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_bulb_prisma_toon.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_bulb_tosphere.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_bulb_width.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_monocle_eye_forward.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_monocle_eye_none.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_monocle_eye_none_cone.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_monocle_eye_star.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_monocle_eye_star_in.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_monocle_simple.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_monocle_snail.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_none_cube.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_none_cube_in.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_none_flatten.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_none_flatten2.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_none_flatten3.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_none_in.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_none_in1.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_none_in2.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_none_in3.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_none_in4.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_none_in5.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_none_in6.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_none_in7.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_none_in8.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_none_in9.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_none_out.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_plica semilunaris_fantasy.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_plica semilunaris_half_left.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_plica semilunaris_half_right.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_toon1.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eye_toon2.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eyelashes_lower_extralong.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eyelashes_upper_extralong.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eyelashes_upper_extralong_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_eye/l_eyelashes_upper_extralong_forward.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_feet_mermaid1.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_feet_mermaid2.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_feet_mermaid3.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_feet_mermaid4.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_feet_mermaid5.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_feet_mermaid6.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_foot_big.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_foot_big_finger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_foot_big_finger_large.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_foot_bignail.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_foot_bigtoe.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_foot_bigtoe_ape.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_foot_fin5.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_foot_finger1_a_none_nail.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_foot_finger1_alibaba.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_foot_finger1_bignail.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_foot_finger1_cobra.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_foot_finger1_point.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_foot_finger2.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_foot_finger2_alibaba2.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_foot_finger2_bignail.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_foot_finger2_bigtop.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_foot_finger2_none_nail.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_foot_finger3.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_foot_finger3_bignail.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_foot_finger3_bigtop.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_foot_finger3_none_nail.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_foot_finger3_point.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_foot_finger4.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_foot_finger4_bigtop.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_foot_finger4_none_nail.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_foot_finger4_point.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_foot_finger_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_foot_finger_down2.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_foot_giant.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_foot_gill1.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_foot_gill2.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_foot_nail_sharp.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_foot_nobody.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_foot_none.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_foot_point.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_foot_smooth.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_foot_total_smooth.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot/l_foot_upper_smooth.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot2/l_foot_lower_flat_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot2/l_foot_lower_thin_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot2/l_foot_wing_back.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot2/l_foot_wing_lateral.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot2/l_foot_wing_side.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot2/l_foot_wing_upper.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot2/l_paw_fauno.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot2/l_paw_fauno_base.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot2/l_paw_nail.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot2/l_paw_nail2.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot2/l_paw_nail2_camel.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot2/l_paw_nail2_fauno.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot2/l_paw_nail2_large.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot2/l_paw_nail2_long.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot2/l_paw_nail2_normal.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot2/l_paw_nail2_sharp.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot2/l_paw_nail2_taurus.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot2/l_paw_nail3_dino.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot2/l_paw_nail3_dino_long.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot2/l_paw_nail3_long.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot2/l_paw_nail3_normal.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot2/l_paw_nail3_predatory.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot2/l_paw_nail3_sharp.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot2/l_paw_nail4_dino.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot2/l_paw_nail4_dino_long.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot2/l_paw_nail4_long.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot2/l_paw_nail4_normal.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot2/l_paw_nail4_predatory.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot2/l_paw_nail4_sharp.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot2/l_paw_nail_horse.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot2/l_paw_nail_large.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot2/l_paw_nail_long.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot2/l_paw_nail_sharp.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot2/l_paw_spine1.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot2/l_paw_spine2.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot2/l_paw_spine3.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_foot2/l_paw_spine4.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_forefinger/l_extralong_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_forefinger/l_hand_aculea_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_forefinger/l_hand_aculea_forefinger_sideways.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_forefinger/l_nail_bifid_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_forefinger/l_nail_claw_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_forefinger/l_nail_comma_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_forefinger/l_nail_large_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_forefinger/l_nail_sharp_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_forefinger/l_nail_sphere_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_forefinger/l_nail_thai_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_forefinger/l_nail_twist_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_1hole_up1.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_1hole_up2.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_2_fingers_big_top.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_2_fingers_point.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_2_fingers_thin.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_3_fingers.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_3_fingers_basic.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_3_fingers_big_top.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_3_fingers_no_nail.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_3_fingers_point.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_3_fingers_sharp.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_4_fingers.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_4_fingers_big_top.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_4_fingers_no_nail.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_4_fingers_sharpen.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_alibaba.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_arthritis.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_back_blade.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_basic.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_big.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_big_top.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_but.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_cone.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_cube.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_cylinder.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_cylinder_cut.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_extrascrawny.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_flat_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_geco.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_giant.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_interfingers.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_knunkle.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_lagoon.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_mid_blade.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_mitten_no_nail.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_mitten_shape.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_mitten_sharp.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_nobody.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_none.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_palm_blade.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_piovra.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_point.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_point_long_basic.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_prisma.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_robot.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_sideways_blade.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_taurus_mitten.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_toon.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_hand/l_hand_trumpet.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_littlefinger/l_extralong_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_littlefinger/l_hand_aculea_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_littlefinger/l_hand_aculea_littlefinger_sideways.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_littlefinger/l_nail_bifid_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_littlefinger/l_nail_claw_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_littlefinger/l_nail_comma_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_littlefinger/l_nail_large_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_littlefinger/l_nail_sharp_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_littlefinger/l_nail_sphere_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_littlefinger/l_nail_thai_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_littlefinger/l_nail_twist_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_lower_arm/l_lower_arm_1hole_back.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_lower_arm/l_lower_arm_1hole_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_lower_arm/l_lower_arm_1hole_front.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_lower_arm/l_lower_arm_1hole_top.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_lower_arm/l_lower_arm_extralong.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_lower_arm/l_lower_arm_extrascrawny.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_lower_arm/l_lower_arm_fold_glove1.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_lower_arm/l_lower_arm_fold_glove2.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_lower_arm/l_lower_arm_fold_glove3.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_lower_arm/l_lower_arm_fold_glove4.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_lower_arm/l_lower_arm_fold_sleeve1.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_lower_arm/l_lower_arm_fold_sleeve2.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_lower_arm/l_lower_arm_half.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_lower_arm/l_lower_arm_nobody.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_lower_arm/l_lower_arm_none.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_lower_arm/l_lower_arm_shield.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_lower_arm/l_lower_arm_temptacle.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_lower_arm/l_lower_arm_turbo.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_lower_arm/l_lower_arm_turbo_sharp.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_lower_leg/l_leg_genius.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_lower_leg/l_leg_lower_genius.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_lower_leg/l_lower_1hole_back.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_lower_leg/l_lower_1hole_front_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_lower_leg/l_lower_1hole_front_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_lower_leg/l_lower_1hole_side.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_lower_leg/l_lower_1hole_side_in.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_lower_leg/l_lower_knee_extralong.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_lower_leg/l_lower_leg_back_shield.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_lower_leg/l_lower_leg_extralong.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_lower_leg/l_lower_leg_extrascrawny.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_lower_leg/l_lower_leg_fold_boot1.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_lower_leg/l_lower_leg_fold_boot2.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_lower_leg/l_lower_leg_fold_tube1.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_lower_leg/l_lower_leg_fold_tube2.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_lower_leg/l_lower_leg_fold_tube_puff.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_lower_leg/l_lower_leg_front_shield.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_lower_leg/l_lower_leg_half.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_lower_leg/l_lower_leg_nobody.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_lower_leg/l_lower_leg_none.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_lower_leg/l_lower_leg_shield.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_lower_leg/l_lower_leg_turbo.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_middlefinger/l_extralong_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_middlefinger/l_hand_aculea_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_middlefinger/l_hand_aculea_middlefinger_sideways.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_middlefinger/l_nail_bifid_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_middlefinger/l_nail_claw_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_middlefinger/l_nail_comma_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_middlefinger/l_nail_large_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_middlefinger/l_nail_middle_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_middlefinger/l_nail_sharp_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_middlefinger/l_nail_sphere_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_middlefinger/l_nail_thai_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_middlefinger/l_nail_twist_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_pollex/l_extralong_pollex.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_pollex/l_nail_bifid_pollex.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_pollex/l_nail_claw_pollex.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_pollex/l_nail_comma_pollex.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_pollex/l_nail_large_pollex.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_pollex/l_nail_sharp_pollex.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_pollex/l_nail_sphere_pollex.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_pollex/l_nail_thai_pollex.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ringfinger/l_extralong_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ringfinger/l_hand_aculea_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ringfinger/l_hand_aculea_ringfinger_sideways.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ringfinger/l_nail_bifid_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ringfinger/l_nail_claw_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ringfinger/l_nail_comma_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ringfinger/l_nail_large_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ringfinger/l_nail_sharp_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ringfinger/l_nail_sphere_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ringfinger/l_nail_thai_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_ringfinger/l_nail_twist_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_shoulder/l_shoulder_double.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_shoulder/l_shoulder_point.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_shoulder/l_shoulder_shield.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_upper_arm/l_upper_arm_1hole_back_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_upper_arm/l_upper_arm_1hole_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_upper_arm/l_upper_arm_1hole_front.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_upper_arm/l_upper_arm_1hole_top_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_upper_arm/l_upper_arm_1hole_top_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_upper_arm/l_upper_arm_extralong.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_upper_arm/l_upper_arm_extranone.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_upper_arm/l_upper_arm_extrascrawny.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_upper_arm/l_upper_arm_fold_glove1.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_upper_arm/l_upper_arm_fold_glove2.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_upper_arm/l_upper_arm_fold_sleeve1.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_upper_arm/l_upper_arm_fold_sleeve2.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_upper_arm/l_upper_arm_fold_sleeve_puff.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_upper_arm/l_upper_arm_half.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_upper_arm/l_upper_arm_nobody.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_upper_arm/l_upper_arm_none.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_upper_arm/l_upper_arm_turbo.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_upper_arm/l_upper_arm_wing.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_upper_leg/l_upper_1hole_back_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_upper_leg/l_upper_1hole_back_mid.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_upper_leg/l_upper_1hole_back_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_upper_leg/l_upper_1hole_front_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_upper_leg/l_upper_1hole_front_mid.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_upper_leg/l_upper_1hole_front_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_upper_leg/l_upper_1hole_side_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_upper_leg/l_upper_1hole_side_mid.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_upper_leg/l_upper_1hole_side_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_upper_leg/l_upper_gill1.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_upper_leg/l_upper_gill2.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_upper_leg/l_upper_gill3.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_upper_leg/l_upper_leg_extranone.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_upper_leg/l_upper_leg_extrascrawny.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_upper_leg/l_upper_leg_fold_boot1.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_upper_leg/l_upper_leg_fold_boot2.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_upper_leg/l_upper_leg_fold_tube1.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_upper_leg/l_upper_leg_fold_tube2.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_upper_leg/l_upper_leg_half.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_upper_leg/l_upper_leg_nobody.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_upper_leg/l_upper_leg_none.png
+%%DATADIR%%/pixmaps/tgimg/ns_l_upper_leg/l_upper_leg_side_shield.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/l_lower_lips_cut1.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/l_lower_lips_cut2.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/l_lower_lips_cut3.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/l_lower_lips_cut4.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/l_upper_lips_cut1.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/l_upper_lips_cut2.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/l_upper_lips_cut3.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/l_upper_lips_cut4.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/l_upper_lips_cut5.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/ns_mouth_geom_circle.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/ns_mouth_geom_mod.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/ns_mouth_geom_quod.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/ns_mouth_geom_triang.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/ns_mouth_lips_none.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/ns_mouth_lips_none2.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/ns_mouth_lips_none3.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/ns_mouth_lips_none4.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/ns_mouth_lips_none5.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/ns_mouth_lips_none6.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/ns_mouth_lower_lips_left_cut1.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/ns_mouth_lower_lips_left_cut2.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/ns_mouth_lower_lips_left_cut3.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/ns_mouth_lower_lips_left_cut4.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/ns_mouth_lower_lips_mid.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/ns_mouth_lower_lips_right_cut1.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/ns_mouth_lower_lips_right_cut2.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/ns_mouth_lower_lips_right_cut3.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/ns_mouth_lower_lips_right_cut4.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/ns_mouth_none_flat.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/ns_mouth_none_hole.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/ns_mouth_none_sphere.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/ns_mouth_none_sphere_nonosenostrill.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/ns_mouth_none_superhero.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/ns_mouth_none_tube.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/ns_mouth_proboscis.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/ns_mouth_upper_lips_left_cut1.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/ns_mouth_upper_lips_left_cut2.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/ns_mouth_upper_lips_left_cut3.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/ns_mouth_upper_lips_left_cut4.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/ns_mouth_upper_lips_left_cut5.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/ns_mouth_upper_lips_mid.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/ns_mouth_upper_lips_right_cut1.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/ns_mouth_upper_lips_right_cut2.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/ns_mouth_upper_lips_right_cut3.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/ns_mouth_upper_lips_right_cut4.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/ns_mouth_upper_lips_right_cut5.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/r_lower_lips_cut1.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/r_lower_lips_cut2.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/r_lower_lips_r_cut3.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/r_lower_lips_r_cut4.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/r_upper_lips_cut2.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/r_upper_lips_cut5.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/r_upper_lips_r_cut1.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/r_upper_lips_r_cut3.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth/r_upper_lips_r_cut4.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth2/mouth_lower_lip_elephant.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth2/mouth_swordfish.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth2/ns_mouth_barrier_round.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth2/ns_mouth_barrier_round0.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth2/ns_mouth_barrier_round0_wide.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth2/ns_mouth_barrier_round1.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth2/ns_mouth_barrier_round2.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth2/ns_mouth_barrier_round3.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth2/ns_mouth_barrier_round3_wide.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth2/ns_mouth_barrier_round4_wide.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth2/ns_mouth_barrier_round5.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth2/ns_mouth_barrier_round5_wide.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth3/muzzle1.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth3/muzzle2.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth3/muzzle3.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth3/muzzle4.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth3/muzzle5.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth3/muzzle6.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth3/muzzle_monkey_little.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth3/muzzle_monkey_long.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth3/muzzle_pig_flat.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth3/muzzle_pig_little.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth3/muzzle_pig_long.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth3/muzzle_pig_middle.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth3/muzzle_point_simple.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth3/muzzle_point_simple_little.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth3/muzzle_point_simple_mouth_long.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth3/muzzle_point_simple_mouth_long_nose1.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth3/muzzle_point_simple_mouth_long_nose1_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth3/muzzle_point_simple_mouth_long_nose2.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth3/muzzle_point_simple_mouth_mid.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth3/muzzle_point_simple_proboscis.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth3/muzzle_point_simple_puff.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth3/nose_cat.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth3/nose_cat_flat.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth3/nose_dog.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth3/nose_dog_flat.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth3/nose_dog_large_toon.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth3/nose_dog_toon.png
+%%DATADIR%%/pixmaps/tgimg/ns_mouth3/nose_dog_toon2.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_bat_1.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_bat_2.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_cat_extraflat.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_cat_flat.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_cat_flat_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_cat_flat_down_narrow.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_cat_flat_narrow.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_cat_little.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_cat_little_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_cat_little_down_narrow.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_cat_little_narrow.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_cat_middle.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_cat_middle_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_cat_middle_down_narrow.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_cat_middle_narrow.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_dog_extraflat.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_dog_extralong.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_dog_extralong_nostrill_none.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_dog_extralong_toon.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_dog_flat.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_dog_flat_large.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_dog_flat_large_toon.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_dog_flat_toon.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_dog_little.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_dog_little_large.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_dog_little_large_toon.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_dog_little_toon.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_dog_long.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_dog_long_large.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_dog_long_large_toon.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_dog_long_toon.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_dog_middle.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_dog_middle_large.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_dog_middle_large_toon.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_dog_middle_toon.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_extralong_fantasy.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_extralong_fantasy_stripes.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_fantasy.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_feline_flat.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_feline_flat_chin_protrunding.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_feline_little.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_feline_little_chin_protruding.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_feline_long.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_feline_long_chin_protrunding.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_feline_long_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_feline_long_down_chin_protrunding.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_feline_middle.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_feline_middle_chin_protrunding.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_frog_extrabig_fantasy.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_frog_extrabig_fantasy_bigmouth.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_frog_simply_fantasy.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_frog_simply_fantasy_chin_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_frog_simply_fantasy_chin_protrunding.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_frog_simply_fantasy_lower.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_frog_simply_fantasy_upper.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_mouse_hight.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_mouse_hight_long.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_mouse_point.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_mouse_point_toon.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_mouse_point_toon_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_mouse_shrew_long.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_mouse_shrew_long_toon.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_mouse_shrew_short.png
+%%DATADIR%%/pixmaps/tgimg/ns_muzzle/muzzle_mouse_shrew_short_toon.png
+%%DATADIR%%/pixmaps/tgimg/ns_neck/neck_2hole_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_neck/neck_2hole_side.png
+%%DATADIR%%/pixmaps/tgimg/ns_neck/neck_2hole_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_neck/neck_back_fin.png
+%%DATADIR%%/pixmaps/tgimg/ns_neck/neck_back_gill1.png
+%%DATADIR%%/pixmaps/tgimg/ns_neck/neck_back_gill2.png
+%%DATADIR%%/pixmaps/tgimg/ns_neck/neck_back_gill3.png
+%%DATADIR%%/pixmaps/tgimg/ns_neck/neck_back_shield.png
+%%DATADIR%%/pixmaps/tgimg/ns_neck/neck_back_wattle_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_neck/neck_back_wattle_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_neck/neck_collar.png
+%%DATADIR%%/pixmaps/tgimg/ns_neck/neck_collar_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_neck/neck_disk.png
+%%DATADIR%%/pixmaps/tgimg/ns_neck/neck_disk_front_large.png
+%%DATADIR%%/pixmaps/tgimg/ns_neck/neck_disk_front_narrow.png
+%%DATADIR%%/pixmaps/tgimg/ns_neck/neck_disk_large.png
+%%DATADIR%%/pixmaps/tgimg/ns_neck/neck_disk_oblique_eyes.png
+%%DATADIR%%/pixmaps/tgimg/ns_neck/neck_disk_oblique_large.png
+%%DATADIR%%/pixmaps/tgimg/ns_neck/neck_disk_oblique_narrow.png
+%%DATADIR%%/pixmaps/tgimg/ns_neck/neck_disk_oblique_point.png
+%%DATADIR%%/pixmaps/tgimg/ns_neck/neck_extralong.png
+%%DATADIR%%/pixmaps/tgimg/ns_neck/neck_front_shield.png
+%%DATADIR%%/pixmaps/tgimg/ns_neck/neck_mid_protrunding.png
+%%DATADIR%%/pixmaps/tgimg/ns_neck/neck_out_extra.png
+%%DATADIR%%/pixmaps/tgimg/ns_neck/neck_sideways_protrunding.png
+%%DATADIR%%/pixmaps/tgimg/ns_neck/neck_wattle_center.png
+%%DATADIR%%/pixmaps/tgimg/ns_neck/neck_wattle_front_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_neck/neck_wattle_side.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose/nose_anime1.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose/nose_anime_no_nostril.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose/nose_big.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose/nose_big_forward.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose/nose_extrabig.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose/nose_extralittle.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose/nose_geom_cone.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose/nose_geom_cube.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose/nose_geom_cube2.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose/nose_geom_cubic.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose/nose_geom_cubic2.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose/nose_geom_cylinder.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose/nose_geom_line.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose/nose_geom_line2.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose/nose_geom_parallelep.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose/nose_geom_piramid.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose/nose_geom_sphere.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose/nose_geom_triang.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose/nose_geom_tube.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose/nose_little.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose/nose_mars.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose/nose_mars_no_nostrill.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose/nose_midle_prominence.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose/nose_midle_prominence1.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose/nose_midle_prominence1_in.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose/nose_midle_prominence_in.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose/nose_none_no_nostril.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose/nose_nostril_bull.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose/nose_nostril_horn.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose/nose_nostril_moustache.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose/nose_nostril_none.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose/nose_nostril_tube.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose/nose_nostril_turbo.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose/nose_rhino.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose/nose_skeleton.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose/nose_skeleton2.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose/nose_strange.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose/nose_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose2/nose_cat.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose2/nose_cat_flat.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose2/nose_dog.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose2/nose_dog_flat.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose2/nose_dog_large_toon.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose2/nose_dog_toon.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose2/nose_dog_toon2.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose2/nose_elephant.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose2/nose_elephant_narrow.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose2/nose_extralong.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose2/nose_line1.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose2/nose_line2.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose2/nose_point_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose2/nose_point_front.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose2/nose_point_front_long.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose2/nose_point_sharp_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose2/nose_point_sharp_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose2/nose_shield1.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose2/nose_shield2.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose2/nose_tapir.png
+%%DATADIR%%/pixmaps/tgimg/ns_nose2/nose_tapir_big.png
+%%DATADIR%%/pixmaps/tgimg/ns_pelvis/1hole_front_center.png
+%%DATADIR%%/pixmaps/tgimg/ns_pelvis/2holes_back.png
+%%DATADIR%%/pixmaps/tgimg/ns_pelvis/2holes_back_side_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_pelvis/2holes_front_side_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_pelvis/2holes_front_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_pelvis/abdomen_1hole_back_center_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_pelvis/abdomen_1hole_back_center_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_pelvis/abdomen_2holes_back_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_pelvis/abdomen_2holes_back_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_pelvis/abdomen_apron_shield.png
+%%DATADIR%%/pixmaps/tgimg/ns_pelvis/abdomen_back_fin.png
+%%DATADIR%%/pixmaps/tgimg/ns_pelvis/abdomen_extra_apron_shield.png
+%%DATADIR%%/pixmaps/tgimg/ns_pelvis/abdomen_mantle_shield.png
+%%DATADIR%%/pixmaps/tgimg/ns_pelvis/pelvis_back_shield.png
+%%DATADIR%%/pixmaps/tgimg/ns_pelvis/pelvis_front_shield.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_cheek/r_cheeck_hamster.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_cheek/r_cheeck_pincer.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_cheek/r_cheeck_pincer_big.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_cheek/r_cheeck_puff_point.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_cheek/r_cheek_cover_eye3.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_cheek/r_cheek_geom_quod.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_cheek/r_cheek_screen_eye.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_cheek/r_cheek_screen_mouth.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_cheek/r_cheek_screen_nose.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_cheek/r_cheek_wattle_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_cheek/r_cheek_wattle_front.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_cheek/r_cheek_wattle_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_bat2.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_out_point.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_outer.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_paper.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_point_ahead.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_point_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_point_down2.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_puff.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_puff_ball.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_puff_circle.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_puff_circle2.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_puff_comma.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_puff_comma_in.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_puff_cube.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_puff_elephant.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_puff_elf.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_puff_mars.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_puff_moon.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_puff_point.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_puff_point_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_puff_point_down_hole.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_puff_point_hook.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_puff_prisma.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_puff_sharp.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_puff_sharp_inside.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_puff_sphere2.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_puff_sphere3.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_rabbit.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_rabbit2.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_rabbit3.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_rabbit_toon.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_rabbit_toon2.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_radar.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_radar2.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_rot_external.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_rot_vert.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_spak.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_spatula.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_star2_down2.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_star2_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_star2_up2.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_star3.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_star3_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_star3_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_star4_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_star4_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_star5.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_stick.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_stick_quod.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_stick_round.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_stick_shape.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_stick_trian.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_trumpet.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_trumpet2.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_trumpet3.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_wave.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_wing_angel.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_wing_demon.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_witch.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_wiz.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_yar.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_yod.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear/r_ear_yod2.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_back_none.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_bamby.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_bat.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_bell.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_bi_points.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_blend.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_bongo.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_bulb.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_bulb1.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_bulb2.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_bulb3.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_cat.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_cat2.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_cow.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_cow2.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_cow3.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_cow4.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_cow5.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_crater.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_cut.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_cut2.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_cut3.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_demon.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_dog.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_dog2.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_dog3.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_donkey.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_donut.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_donut2.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_dumbo.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_elf.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_fawn.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_flower.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_flower2.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_flower3.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_flower4.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_flower5.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_geom_circle.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_geom_quod.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_geom_triang.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_goat.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_gremlins.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_in_out.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_inner.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_leaf.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_leaf2.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_leaf3.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_little_bear.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_lobe_point_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_lobe_point_out.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_long_round.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_mouse.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_mouse_toon.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_mouse_toon_round.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_mouse_toon_triangle.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_move_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_none.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_none2.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_none3.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_none4.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ear2/r_ear_none5.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_bulb_2extraup.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_bulb_cilinder.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_bulb_cilinder_toon.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_bulb_cube.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_bulb_cube_toon.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_bulb_depth.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_bulb_extraback.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_bulb_extraforward.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_bulb_extraleft.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_bulb_extraright.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_bulb_extraup.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_bulb_height.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_bulb_none.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_bulb_prisma.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_bulb_prisma_toon.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_bulb_tosphere.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_bulb_width.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_monocle_eye_forward.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_monocle_eye_none.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_monocle_eye_none_cone.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_monocle_eye_star.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_monocle_eye_star_in.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_monocle_simple.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_monocle_snail.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_none_cilinder_in.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_none_cube.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_none_cube_in.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_none_flatten.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_none_flatten2.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_none_flatten3.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_none_in.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_none_in1.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_none_in2.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_none_in3.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_none_in4.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_none_in5.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_none_in6.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_none_in7.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_none_in8.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_none_in9.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_none_out.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_plica semilunaris_fantasy.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_plica semilunaris_half_left.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_plica semilunaris_half_right.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_toon1.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eye_toon2.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eyelashes_lower_extralong.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eyelashes_upper_extralong.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eyelashes_upper_extralong_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_eye/r_eyelashes_upper_extralong_forward.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_feet_mermaid1.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_feet_mermaid2.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_feet_mermaid3.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_feet_mermaid4.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_feet_mermaid5.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_feet_mermaid6.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_foot_big.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_foot_big_finger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_foot_big_finger_large.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_foot_bignail.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_foot_bigtoe.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_foot_bigtoe_ape.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_foot_fin5.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_foot_finger1_a_none_nail.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_foot_finger1_alibaba.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_foot_finger1_bignail.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_foot_finger1_cobra.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_foot_finger1_point.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_foot_finger2.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_foot_finger2_alibaba2.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_foot_finger2_bignail.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_foot_finger2_bigtop.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_foot_finger2_none_nail.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_foot_finger3.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_foot_finger3_bignail.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_foot_finger3_bigtop.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_foot_finger3_none_nail.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_foot_finger3_point.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_foot_finger4.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_foot_finger4_bigtop.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_foot_finger4_none_nail.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_foot_finger4_point.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_foot_finger_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_foot_finger_down2.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_foot_giant.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_foot_gill1.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_foot_gill2.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_foot_nail_sharp.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_foot_nobody.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_foot_none.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_foot_point.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_foot_smooth.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_foot_total_smooth.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot/r_foot_upper_smooth.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot2/r_foot_lower_flat_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot2/r_foot_lower_thin_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot2/r_foot_wing_back.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot2/r_foot_wing_lateral.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot2/r_foot_wing_side.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot2/r_foot_wing_upper.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot2/r_paw_fauno.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot2/r_paw_fauno_base.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot2/r_paw_nail.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot2/r_paw_nail2.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot2/r_paw_nail2_camel.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot2/r_paw_nail2_fauno.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot2/r_paw_nail2_large.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot2/r_paw_nail2_long.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot2/r_paw_nail2_normal.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot2/r_paw_nail2_sharp.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot2/r_paw_nail2_taurus.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot2/r_paw_nail3_dino.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot2/r_paw_nail3_dino_long.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot2/r_paw_nail3_long.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot2/r_paw_nail3_normal.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot2/r_paw_nail3_predatory.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot2/r_paw_nail3_sharp.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot2/r_paw_nail4_dino.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot2/r_paw_nail4_dino_long.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot2/r_paw_nail4_long.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot2/r_paw_nail4_normal.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot2/r_paw_nail4_predatory.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot2/r_paw_nail4_sharp.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot2/r_paw_nail_horse.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot2/r_paw_nail_large.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot2/r_paw_nail_long.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot2/r_paw_nail_sharp.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot2/r_paw_spine1.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot2/r_paw_spine2.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot2/r_paw_spine3.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_foot2/r_paw_spine4.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_forefinger/r_extralong_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_forefinger/r_hand_aculea_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_forefinger/r_hand_aculea_forefinger_sideways.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_forefinger/r_long_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_forefinger/r_nail_bifid_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_forefinger/r_nail_claw_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_forefinger/r_nail_comma_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_forefinger/r_nail_cut_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_forefinger/r_nail_cut_smooth_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_forefinger/r_nail_depth_big_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_forefinger/r_nail_depth_small_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_forefinger/r_nail_large_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_forefinger/r_nail_sharp_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_forefinger/r_nail_sphere_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_forefinger/r_nail_thai_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_forefinger/r_nail_twist_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_forefinger/r_nail_width_big_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_forefinger/r_nail_width_small_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_1hole_up1.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_1hole_up2.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_2_fingers_big_top.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_2_fingers_point.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_2_fingers_thin.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_3_fingers.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_3_fingers_basic.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_3_fingers_big_top.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_3_fingers_no_nail.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_3_fingers_point.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_3_fingers_sharp.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_4_fingers.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_4_fingers_big_top.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_4_fingers_no_nail.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_4_fingers_sharpen.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_alibaba.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_arthritis.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_back_blade.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_basic.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_big.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_big_top.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_but.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_cone.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_cube.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_cylinder.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_cylinder_cut.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_extrascrawny.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_flat_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_geco.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_giant.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_interfingers.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_knunkle.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_lagoon.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_mid_blade.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_mitten_no_nail.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_mitten_shape.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_mitten_sharp.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_nobody.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_none.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_palm_blade.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_piovra.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_point.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_point_long_basic.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_prisma.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_robot.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_sideways_blade.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_taurus_mitten.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_toon.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_hand/r_hand_trumpet.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_littlefinger/r_extralong_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_littlefinger/r_hand_aculea_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_littlefinger/r_hand_aculea_littlefinger_sideways.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_littlefinger/r_long_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_littlefinger/r_nail_bifid_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_littlefinger/r_nail_claw_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_littlefinger/r_nail_comma_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_littlefinger/r_nail_cut_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_littlefinger/r_nail_cut_smooth_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_littlefinger/r_nail_depth_big_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_littlefinger/r_nail_depth_small_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_littlefinger/r_nail_large_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_littlefinger/r_nail_sharp_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_littlefinger/r_nail_sphere_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_littlefinger/r_nail_thai_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_littlefinger/r_nail_twist_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_littlefinger/r_nail_width_big_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_littlefinger/r_nail_width_small_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_lower_arm/r_lower_arm_1hole_back.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_lower_arm/r_lower_arm_1hole_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_lower_arm/r_lower_arm_1hole_front.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_lower_arm/r_lower_arm_1hole_top.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_lower_arm/r_lower_arm_extralong.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_lower_arm/r_lower_arm_extrascrawny.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_lower_arm/r_lower_arm_fold_glove1.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_lower_arm/r_lower_arm_fold_glove2.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_lower_arm/r_lower_arm_fold_glove3.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_lower_arm/r_lower_arm_fold_glove4.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_lower_arm/r_lower_arm_fold_sleeve1.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_lower_arm/r_lower_arm_fold_sleeve2.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_lower_arm/r_lower_arm_half.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_lower_arm/r_lower_arm_nobody.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_lower_arm/r_lower_arm_none.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_lower_arm/r_lower_arm_shield.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_lower_arm/r_lower_arm_temptacle.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_lower_arm/r_lower_arm_turbo.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_lower_arm/r_lower_arm_turbo_sharp.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_lower_leg/r_leg_genius.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_lower_leg/r_leg_lower_genius.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_lower_leg/r_lower_1hole_back.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_lower_leg/r_lower_1hole_front_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_lower_leg/r_lower_1hole_front_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_lower_leg/r_lower_1hole_side.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_lower_leg/r_lower_1hole_side_in.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_lower_leg/r_lower_knee_extralong.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_lower_leg/r_lower_leg_back_shield.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_lower_leg/r_lower_leg_extralong.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_lower_leg/r_lower_leg_extrascrawny.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_lower_leg/r_lower_leg_fold_boot1.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_lower_leg/r_lower_leg_fold_boot2.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_lower_leg/r_lower_leg_fold_tube1.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_lower_leg/r_lower_leg_fold_tube2.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_lower_leg/r_lower_leg_fold_tube_puff.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_lower_leg/r_lower_leg_front_shield.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_lower_leg/r_lower_leg_half.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_lower_leg/r_lower_leg_nobody.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_lower_leg/r_lower_leg_none.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_lower_leg/r_lower_leg_shield.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_lower_leg/r_lower_leg_turbo.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_middlefinger/r_extralong_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_middlefinger/r_hand_aculea_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_middlefinger/r_hand_aculea_middlefinger_sideways.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_middlefinger/r_hand_aculea_middlefinger_sideways_move.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_middlefinger/r_long_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_middlefinger/r_nail_bifid_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_middlefinger/r_nail_claw_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_middlefinger/r_nail_comma_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_middlefinger/r_nail_cut_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_middlefinger/r_nail_cut_smooth_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_middlefinger/r_nail_depth_big_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_middlefinger/r_nail_depth_small_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_middlefinger/r_nail_large_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_middlefinger/r_nail_middle_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_middlefinger/r_nail_sharp_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_middlefinger/r_nail_sphere_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_middlefinger/r_nail_thai_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_middlefinger/r_nail_twist_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_middlefinger/r_nail_width_big_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_middlefinger/r_nail_width_small_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_pollex/r_extralong_pollex.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_pollex/r_extralong_thumb.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_pollex/r_hand_aculea_littlefinger_sideways.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_pollex/r_hand_aculea_pollex.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_pollex/r_long_thumb.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_pollex/r_long_thumb_phalangette.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_pollex/r_nail_bifid_pollex.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_pollex/r_nail_bifid_thumb.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_pollex/r_nail_claw_pollex.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_pollex/r_nail_claw_thumb.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_pollex/r_nail_comma_pollex.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_pollex/r_nail_comma_thumb.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_pollex/r_nail_cut_smooth_thumb.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_pollex/r_nail_cut_thumb.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_pollex/r_nail_depth_big_thumb.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_pollex/r_nail_depth_small_thumb.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_pollex/r_nail_large_pollex.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_pollex/r_nail_large_thumb.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_pollex/r_nail_sharp_pollex.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_pollex/r_nail_sharp_thumb.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_pollex/r_nail_sphere_pollex.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_pollex/r_nail_sphere_thumb.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_pollex/r_nail_thai_pollex.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_pollex/r_nail_thai_thumb.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_pollex/r_nail_twist_thumb.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_pollex/r_nail_width_big_thumb.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_pollex/r_nail_width_small_thumb.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ringfinger/r_extralong_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ringfinger/r_hand_aculea_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ringfinger/r_hand_aculea_ringfinger_sideways.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ringfinger/r_long_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ringfinger/r_nail_bifid_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ringfinger/r_nail_claw_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ringfinger/r_nail_comma_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ringfinger/r_nail_cut_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ringfinger/r_nail_cut_smooth_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ringfinger/r_nail_depth_big_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ringfinger/r_nail_depth_small_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ringfinger/r_nail_large_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ringfinger/r_nail_sharp_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ringfinger/r_nail_sphere_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ringfinger/r_nail_thai_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ringfinger/r_nail_twist_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ringfinger/r_nail_width_big_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_ringfinger/r_nail_width_small_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_shoulder/r_shoulder_double.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_shoulder/r_shoulder_point.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_shoulder/r_shoulder_shield.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_arm/r_upper_arm_1hole_back_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_arm/r_upper_arm_1hole_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_arm/r_upper_arm_1hole_front.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_arm/r_upper_arm_1hole_top_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_arm/r_upper_arm_1hole_top_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_arm/r_upper_arm_extralong.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_arm/r_upper_arm_extranone.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_arm/r_upper_arm_extrascrawny.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_arm/r_upper_arm_fold_glove1.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_arm/r_upper_arm_fold_glove2.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_arm/r_upper_arm_fold_sleeve1.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_arm/r_upper_arm_fold_sleeve2.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_arm/r_upper_arm_fold_sleeve_puff.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_arm/r_upper_arm_half.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_arm/r_upper_arm_nobody.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_arm/r_upper_arm_none.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_arm/r_upper_arm_turbo.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_arm/r_upper_arm_wing.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_leg/leg_genius.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_leg/leg_mermaid_base.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_leg/leg_mono.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_leg/leg_mono_left.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_leg/leg_mono_right.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_leg/r_upper_1hole_back_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_leg/r_upper_1hole_back_mid.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_leg/r_upper_1hole_back_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_leg/r_upper_1hole_front_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_leg/r_upper_1hole_front_mid.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_leg/r_upper_1hole_front_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_leg/r_upper_1hole_side_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_leg/r_upper_1hole_side_mid.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_leg/r_upper_1hole_side_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_leg/r_upper_gill1.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_leg/r_upper_gill2.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_leg/r_upper_gill3.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_leg/r_upper_leg_extranone.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_leg/r_upper_leg_extrascrawny.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_leg/r_upper_leg_fold_boot1.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_leg/r_upper_leg_fold_boot2.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_leg/r_upper_leg_fold_tube1.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_leg/r_upper_leg_fold_tube2.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_leg/r_upper_leg_half.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_leg/r_upper_leg_nobody.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_leg/r_upper_leg_none.png
+%%DATADIR%%/pixmaps/tgimg/ns_r_upper_leg/r_upper_leg_side_shield.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_alien.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_basic.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_basic_cilinder.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_basic_knife.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_basic_point.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_basic_sharp.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_basic_thin.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_big_incisive.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_cannibal.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_cartoon.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_extralong.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_fang_top.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_funny1.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_funny2.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_gengivite.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_gum_monster.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_gum_narrow.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_gum_out.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_gum_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_imperfect.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_kriss.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_monster1.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_monster2.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_monster3.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_monster4.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_monster5.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_monster6.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_murene.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_nosferatu.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_perfect.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_piovra.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_pirana.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_predator.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_scarus.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_shark.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_skull.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_smooth_palate.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_sphere.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_trap.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_vampire.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_vampire1.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_vampire2.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_vampire3.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_window.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_xfile1.png
+%%DATADIR%%/pixmaps/tgimg/ns_teeth/teeth_xfile2.png
+%%DATADIR%%/pixmaps/tgimg/ns_tongue/tongue_.png
+%%DATADIR%%/pixmaps/tgimg/ns_tongue/tongue_base.png
+%%DATADIR%%/pixmaps/tgimg/ns_tongue/tongue_bifid.png
+%%DATADIR%%/pixmaps/tgimg/ns_tongue/tongue_bifid2.png
+%%DATADIR%%/pixmaps/tgimg/ns_tongue/tongue_butterfly.png
+%%DATADIR%%/pixmaps/tgimg/ns_tongue/tongue_camaleon.png
+%%DATADIR%%/pixmaps/tgimg/ns_tongue/tongue_carpet.png
+%%DATADIR%%/pixmaps/tgimg/ns_tongue/tongue_crest.png
+%%DATADIR%%/pixmaps/tgimg/ns_tongue/tongue_cut.png
+%%DATADIR%%/pixmaps/tgimg/ns_tongue/tongue_cut_real.png
+%%DATADIR%%/pixmaps/tgimg/ns_tongue/tongue_cut_real2.png
+%%DATADIR%%/pixmaps/tgimg/ns_tongue/tongue_delfin.png
+%%DATADIR%%/pixmaps/tgimg/ns_tongue/tongue_extrasharp.png
+%%DATADIR%%/pixmaps/tgimg/ns_tongue/tongue_flat.png
+%%DATADIR%%/pixmaps/tgimg/ns_tongue/tongue_geom_cone.png
+%%DATADIR%%/pixmaps/tgimg/ns_tongue/tongue_geom_cube.png
+%%DATADIR%%/pixmaps/tgimg/ns_tongue/tongue_geom_parallelepiped.png
+%%DATADIR%%/pixmaps/tgimg/ns_tongue/tongue_geom_piramid.png
+%%DATADIR%%/pixmaps/tgimg/ns_tongue/tongue_geom_prism.png
+%%DATADIR%%/pixmaps/tgimg/ns_tongue/tongue_geom_round.png
+%%DATADIR%%/pixmaps/tgimg/ns_tongue/tongue_geom_triangular.png
+%%DATADIR%%/pixmaps/tgimg/ns_tongue/tongue_kaly.png
+%%DATADIR%%/pixmaps/tgimg/ns_tongue/tongue_leaf.png
+%%DATADIR%%/pixmaps/tgimg/ns_tongue/tongue_none.png
+%%DATADIR%%/pixmaps/tgimg/ns_tongue/tongue_point.png
+%%DATADIR%%/pixmaps/tgimg/ns_tongue/tongue_puff.png
+%%DATADIR%%/pixmaps/tgimg/ns_tongue/tongue_smooth.png
+%%DATADIR%%/pixmaps/tgimg/ns_tongue/tongue_tube.png
+%%DATADIR%%/pixmaps/tgimg/ns_tongue/tongue_tube2.png
+%%DATADIR%%/pixmaps/tgimg/ns_tongue/tongue_tube3.png
+%%DATADIR%%/pixmaps/tgimg/ns_tongue/tongue_wave.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso/torso_apron_shield.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso/torso_apron_shield_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso/torso_back_2point.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso/torso_back_dragon.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso/torso_back_dragon2.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso/torso_back_dragon_in.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso/torso_back_fin.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso/torso_back_gill1.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso/torso_back_gill2.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso/torso_back_gill3.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso/torso_back_none_hole.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso/torso_back_point.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso/torso_back_shield.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso/torso_back_turtle.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso/torso_backward.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso/torso_front_gill1.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso/torso_front_gill2.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso/torso_front_gill3.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso/torso_front_shield.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso/torso_halfbody_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso/torso_halfbody_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso/torso_hunch_left.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso/torso_hunch_right.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso/torso_kiphosis.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso/torso_mantle_shield_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso/torso_mantle_shield_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso/torso_nipple_base_none.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso/torso_nipple_base_sharp.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso/torso_nipple_temptacle.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso/torso_side_gill1.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso/torso_side_gill2.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso/torso_side_gill3.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso/torso_side_gill4.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso/torsoholr.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso2/back_gash.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso2/pectoral_muscular_nipple_none.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso2/targets_female_nipple_breast_big_almost_round_none.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso2/targets_female_nipple_breast_big_natural_none.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso2/targets_female_nipple_breast_medium_none.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso2/torso_1hole_back_center.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso2/torso_1hole_back_center_mid.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso2/torso_1hole_front_center_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso2/torso_2hole_front_side_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso2/torso_2hole_side_back_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso2/torso_2hole_side_front_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso2/torso_2holes_back_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso2/torso_2holes_back_mid.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso2/torso_2holes_back_side.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso2/torso_2holes_back_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso2/torso_2holes_front_center_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso2/torso_2holes_front_center_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso2/torso_2holes_front_side_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso2/torso_2holes_front_top.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso2/torso_2holes_front_up.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso2/torso_scapula_backward.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso2/torso_scapula_point_backward.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso2/torso_scapula_point_down.png
+%%DATADIR%%/pixmaps/tgimg/ns_torso2/torso_scapula_point_up.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/erectors_muscular.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/external_oblique_muscular_lower.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/external_oblique_muscular_lower2.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/genitals_female.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/genitals_man_base.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/genitals_man_big.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/genitals_man_foreskin.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/genitals_man_foreskin_behind.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/genitals_man_foreskin_big.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/genitals_man_foreskin_long.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/genitals_man_foreskin_none.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/genitals_man_foreskin_semi_behind.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/genitals_man_foreskin_short.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/genitals_man_foreskin_small.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/genitals_man_glande_big.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/genitals_man_glande_small.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/genitals_man_glande_smooth_big.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/genitals_man_glande_smooth_small.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/genitals_man_penis_long.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/genitals_man_penis_short.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/genitals_man_small.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/genitals_man_testicula_big_depth.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/genitals_man_testicula_big_height.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/genitals_man_testicula_big_width.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/genitals_man_testicula_left_down.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/genitals_man_testicula_left_up.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/genitals_man_testicula_right_down.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/genitals_man_testicula_right_up.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/genitals_man_testicula_small_depth.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/genitals_man_testicula_small_height.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/genitals_man_testicula_small_width.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/gluteus_fat.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/gluteus_fat2.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/gluteus_flabby.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/gluteus_out.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/gluteus_scrawny.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/l_hip_width_max.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/man_no_genital.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/muscolifascia.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/oblique_muscular.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/pelvis_height_min.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/pelvis_lateral_large.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/pelvis_lateral_small.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/pelvis_rot_left.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/pelvis_rot_left1.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/pelvis_rot_right.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/pelvis_rot_right1.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/pelvis_width_min.png
+%%DATADIR%%/pixmaps/tgimg/pelvis/r_hip_width_max.png
+%%DATADIR%%/pixmaps/tgimg/r_cheek/r_cheeck_line1.png
+%%DATADIR%%/pixmaps/tgimg/r_cheek/r_cheeck_line2.png
+%%DATADIR%%/pixmaps/tgimg/r_cheek/r_cheeck_line3.png
+%%DATADIR%%/pixmaps/tgimg/r_cheek/r_cheeck_line4.png
+%%DATADIR%%/pixmaps/tgimg/r_cheek/r_cheeck_line5.png
+%%DATADIR%%/pixmaps/tgimg/r_cheek/r_cheeck_line6.png
+%%DATADIR%%/pixmaps/tgimg/r_cheek/r_cheek_flabby.png
+%%DATADIR%%/pixmaps/tgimg/r_cheek/r_cheek_hollow.png
+%%DATADIR%%/pixmaps/tgimg/r_cheek/r_cheek_round.png
+%%DATADIR%%/pixmaps/tgimg/r_cheek/r_cheek_smooth.png
+%%DATADIR%%/pixmaps/tgimg/r_cheek/r_cheek_up.png
+%%DATADIR%%/pixmaps/tgimg/r_cheek/r_cheek_wrinkle.png
+%%DATADIR%%/pixmaps/tgimg/r_cheek/r_cheekbone_down.png
+%%DATADIR%%/pixmaps/tgimg/r_cheek/r_cheekbone_protuding.png
+%%DATADIR%%/pixmaps/tgimg/r_cheek/r_cheekbone_protuding_up.png
+%%DATADIR%%/pixmaps/tgimg/r_cheek/r_cheekbone_shallow.png
+%%DATADIR%%/pixmaps/tgimg/r_cheek/r_cheekbone_thin.png
+%%DATADIR%%/pixmaps/tgimg/r_cheek/r_cheekbone_up.png
+%%DATADIR%%/pixmaps/tgimg/r_cheek/r_cheekbone_wide.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_antihelix_large.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_antihelix_none.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_antihelix_puff.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_antihelix_round.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_antihelix_short.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_antihelix_thin.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_antitragus_down.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_antitragus_none.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_antitragus_puff.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_antitragus_round.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_antitragus_up.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_baby.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_backward.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_big.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_crus_helicis_down.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_crus_helicis_large.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_crus_helicis_none.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_crus_helicis_up.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_cymba_conchae_big.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_cymba_conchae_small.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_extrabig.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_extrasmall.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_extraup.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_flap.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_flappy_bottom.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_flappy_sideways.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_flappy_top.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_forward.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_half_wings.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_height.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_inferior_crus_large.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_internal_flat.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_lobe_big.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_lobe_small.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_lobe_width_max.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_lobe_width_min.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_low.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_lower_depth.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_lower_height.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_lower_small.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_outward.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_quod.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_rot_backward.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_rot_forward.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_rot_outward.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_small.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_thin.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_ear_wind.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_earlobe_height_max.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_earlobe_height_min.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_earlobe_out.png
+%%DATADIR%%/pixmaps/tgimg/r_ear/r_earlobe_width_max.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_helix_in1.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_helix_in10.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_helix_in11.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_helix_in2.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_helix_in3.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_helix_in4.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_helix_in5.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_helix_in6.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_helix_in7.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_helix_in8.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_helix_in9.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_helix_out1.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_helix_out10.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_helix_out11.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_helix_out2.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_helix_out3.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_helix_out4.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_helix_out5.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_helix_out6.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_helix_out7.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_helix_out8.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_helix_out9.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_helix_puff.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_helix_side.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_helix_thin.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_helix_upper.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_incisura_interior_down.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_incisura_interior_up.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_incisura_intertragica_big.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_incisura_intertragica_down.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_incisura_intertragica_small.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_incisura_intertragica_up.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_inferior_crus_narrow.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_inferior_crus_none.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_scapha_lower_large.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_scapha_none.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_scapha_side_large.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_scapha_upper_large.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_superior_crus_large.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_superior_crus_narrow.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_superior_crus_none.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_tragus_down.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_tragus_in.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_tragus_none.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_tragus_puff.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_tragus_small.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_tragus_up.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_triangular_fossa_big.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_triangular_fossa_long.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_triangular_fossa_none.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_triangular_fossa_short.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_triangular_fossa_small.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_tuberculum_auricolae.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_tuberculum_supertragicum.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_upper_big.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_upper_depth.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_upper_height.png
+%%DATADIR%%/pixmaps/tgimg/r_ear2/r_ear_upper_out.png
+%%DATADIR%%/pixmaps/tgimg/r_eye/r_eye_big.png
+%%DATADIR%%/pixmaps/tgimg/r_eye/r_eye_box.png
+%%DATADIR%%/pixmaps/tgimg/r_eye/r_eye_bulb_back.png
+%%DATADIR%%/pixmaps/tgimg/r_eye/r_eye_bulb_down.png
+%%DATADIR%%/pixmaps/tgimg/r_eye/r_eye_bulb_extrasize.png
+%%DATADIR%%/pixmaps/tgimg/r_eye/r_eye_bulb_forward.png
+%%DATADIR%%/pixmaps/tgimg/r_eye/r_eye_bulb_left.png
+%%DATADIR%%/pixmaps/tgimg/r_eye/r_eye_bulb_minisize.png
+%%DATADIR%%/pixmaps/tgimg/r_eye/r_eye_bulb_right.png
+%%DATADIR%%/pixmaps/tgimg/r_eye/r_eye_bulb_size.png
+%%DATADIR%%/pixmaps/tgimg/r_eye/r_eye_bulb_up.png
+%%DATADIR%%/pixmaps/tgimg/r_eye/r_eye_center_height_max.png
+%%DATADIR%%/pixmaps/tgimg/r_eye/r_eye_distance_max.png
+%%DATADIR%%/pixmaps/tgimg/r_eye/r_eye_distance_min.png
+%%DATADIR%%/pixmaps/tgimg/r_eye/r_eye_down.png
+%%DATADIR%%/pixmaps/tgimg/r_eye/r_eye_fold.png
+%%DATADIR%%/pixmaps/tgimg/r_eye/r_eye_fold_double.png
+%%DATADIR%%/pixmaps/tgimg/r_eye/r_eye_fold_lower.png
+%%DATADIR%%/pixmaps/tgimg/r_eye/r_eye_iris_min.png
+%%DATADIR%%/pixmaps/tgimg/r_eye/r_eye_no_bulb.png
+%%DATADIR%%/pixmaps/tgimg/r_eye/r_eye_overhang.png
+%%DATADIR%%/pixmaps/tgimg/r_eye/r_eye_small.png
+%%DATADIR%%/pixmaps/tgimg/r_eye/r_eye_up.png
+%%DATADIR%%/pixmaps/tgimg/r_eye/r_eye_wrinkles.png
+%%DATADIR%%/pixmaps/tgimg/r_eye/r_eyelashes_curve.png
+%%DATADIR%%/pixmaps/tgimg/r_eye/r_eyelashes_long.png
+%%DATADIR%%/pixmaps/tgimg/r_eye/r_eyelashes_none.png
+%%DATADIR%%/pixmaps/tgimg/r_eye/r_eyelids_out.png
+%%DATADIR%%/pixmaps/tgimg/r_eye/r_eyelids_up.png
+%%DATADIR%%/pixmaps/tgimg/r_eye2/r_eye_bulb_rot_down.png
+%%DATADIR%%/pixmaps/tgimg/r_eye2/r_eye_bulb_rot_in.png
+%%DATADIR%%/pixmaps/tgimg/r_eye2/r_eye_bulb_rot_out.png
+%%DATADIR%%/pixmaps/tgimg/r_eye2/r_eye_bulb_rot_up.png
+%%DATADIR%%/pixmaps/tgimg/r_eye2/r_eye_close.png
+%%DATADIR%%/pixmaps/tgimg/r_eye2/r_eye_external_corner_down.png
+%%DATADIR%%/pixmaps/tgimg/r_eye2/r_eye_external_corner_in.png
+%%DATADIR%%/pixmaps/tgimg/r_eye2/r_eye_external_corner_out.png
+%%DATADIR%%/pixmaps/tgimg/r_eye2/r_eye_external_corner_up.png
+%%DATADIR%%/pixmaps/tgimg/r_eye2/r_eye_external_height_max.png
+%%DATADIR%%/pixmaps/tgimg/r_eye2/r_eye_external_rot_in.png
+%%DATADIR%%/pixmaps/tgimg/r_eye2/r_eye_external_rot_out.png
+%%DATADIR%%/pixmaps/tgimg/r_eye2/r_eye_inside.png
+%%DATADIR%%/pixmaps/tgimg/r_eye2/r_eye_internal_corner_down.png
+%%DATADIR%%/pixmaps/tgimg/r_eye2/r_eye_internal_corner_in.png
+%%DATADIR%%/pixmaps/tgimg/r_eye2/r_eye_internal_corner_out.png
+%%DATADIR%%/pixmaps/tgimg/r_eye2/r_eye_internal_corner_up.png
+%%DATADIR%%/pixmaps/tgimg/r_eye2/r_eye_internal_height_max.png
+%%DATADIR%%/pixmaps/tgimg/r_eye2/r_eye_lid_lower_up.png
+%%DATADIR%%/pixmaps/tgimg/r_eye2/r_eye_lid_upper_down.png
+%%DATADIR%%/pixmaps/tgimg/r_eye2/r_eye_lid_upper_half_down.png
+%%DATADIR%%/pixmaps/tgimg/r_eye2/r_eye_lid_upper_up.png
+%%DATADIR%%/pixmaps/tgimg/r_eye2/r_eye_overhang.png
+%%DATADIR%%/pixmaps/tgimg/r_eye2/r_eyebrow_inner_down.png
+%%DATADIR%%/pixmaps/tgimg/r_eye2/r_eyebrow_inner_up.png
+%%DATADIR%%/pixmaps/tgimg/r_eye2/r_eyebrow_outer_up.png
+%%DATADIR%%/pixmaps/tgimg/r_eye2/r_eyebrown_lower_down.png
+%%DATADIR%%/pixmaps/tgimg/r_eye2/r_eyelash_upper_down.png
+%%DATADIR%%/pixmaps/tgimg/r_foot/r_ankle_big.png
+%%DATADIR%%/pixmaps/tgimg/r_foot/r_ankle_fat.png
+%%DATADIR%%/pixmaps/tgimg/r_foot/r_ankle_little.png
+%%DATADIR%%/pixmaps/tgimg/r_foot/r_foot_bigtoe_valgus.png
+%%DATADIR%%/pixmaps/tgimg/r_foot/r_foot_fingers_long.png
+%%DATADIR%%/pixmaps/tgimg/r_foot/r_foot_height_max.png
+%%DATADIR%%/pixmaps/tgimg/r_foot/r_foot_height_min.png
+%%DATADIR%%/pixmaps/tgimg/r_foot/r_foot_long.png
+%%DATADIR%%/pixmaps/tgimg/r_foot/r_foot_plantare_down.png
+%%DATADIR%%/pixmaps/tgimg/r_foot/r_foot_plantare_up.png
+%%DATADIR%%/pixmaps/tgimg/r_foot/r_foot_scrawny.png
+%%DATADIR%%/pixmaps/tgimg/r_foot/r_foot_short.png
+%%DATADIR%%/pixmaps/tgimg/r_foot/r_foot_width_max.png
+%%DATADIR%%/pixmaps/tgimg/r_foot/r_foot_width_min.png
+%%DATADIR%%/pixmaps/tgimg/r_foot/r_heel_none.png
+%%DATADIR%%/pixmaps/tgimg/r_forefinger/r_height_max_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/r_forefinger/r_height_min_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/r_forefinger/r_lenght_max_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/r_forefinger/r_lenght_min_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/r_forefinger/r_nail_cut_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/r_forefinger/r_nail_cut_smooth_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/r_forefinger/r_nail_lenght_max_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/r_forefinger/r_nail_lenght_min_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/r_forefinger/r_nail_lenght_out_max_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/r_forefinger/r_nail_width_max_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/r_forefinger/r_nail_width_min_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/r_forefinger/r_width_max_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/r_forefinger/r_width_min_forefinger.png
+%%DATADIR%%/pixmaps/tgimg/r_hand/r_hand_height_max.png
+%%DATADIR%%/pixmaps/tgimg/r_hand/r_hand_height_min.png
+%%DATADIR%%/pixmaps/tgimg/r_hand/r_hand_lenght_max.png
+%%DATADIR%%/pixmaps/tgimg/r_hand/r_hand_lenght_min.png
+%%DATADIR%%/pixmaps/tgimg/r_hand/r_hand_width_max.png
+%%DATADIR%%/pixmaps/tgimg/r_hand/r_hand_width_min.png
+%%DATADIR%%/pixmaps/tgimg/r_hand2/r_hand_scrawny.png
+%%DATADIR%%/pixmaps/tgimg/r_littlefinger/r_height_max_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/r_littlefinger/r_height_min_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/r_littlefinger/r_lenght_max_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/r_littlefinger/r_lenght_min_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/r_littlefinger/r_nail_cut_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/r_littlefinger/r_nail_cut_smooth_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/r_littlefinger/r_nail_lenght_max_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/r_littlefinger/r_nail_lenght_min_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/r_littlefinger/r_nail_lenght_out_max_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/r_littlefinger/r_nail_width_max_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/r_littlefinger/r_nail_width_min_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/r_littlefinger/r_width_max_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/r_littlefinger/r_width_min_littlefinger.png
+%%DATADIR%%/pixmaps/tgimg/r_lower_arm/r_lower_arm_fat.png
+%%DATADIR%%/pixmaps/tgimg/r_lower_arm/r_lower_arm_height_min.png
+%%DATADIR%%/pixmaps/tgimg/r_lower_arm/r_lower_arm_long.png
+%%DATADIR%%/pixmaps/tgimg/r_lower_arm/r_lower_arm_muscular.png
+%%DATADIR%%/pixmaps/tgimg/r_lower_arm/r_lower_arm_scrawny.png
+%%DATADIR%%/pixmaps/tgimg/r_lower_arm/r_lower_arm_short.png
+%%DATADIR%%/pixmaps/tgimg/r_lower_arm/r_lower_arm_width_min.png
+%%DATADIR%%/pixmaps/tgimg/r_lower_arm/r_lower_arm_wrist_muscolar.png
+%%DATADIR%%/pixmaps/tgimg/r_lower_arm/r_wrist_big.png
+%%DATADIR%%/pixmaps/tgimg/r_lower_arm/r_wrist_small.png
+%%DATADIR%%/pixmaps/tgimg/r_lower_leg/r_calf_muscular.png
+%%DATADIR%%/pixmaps/tgimg/r_lower_leg/r_leg_lower_convex.png
+%%DATADIR%%/pixmaps/tgimg/r_lower_leg/r_leg_upper_convex.png
+%%DATADIR%%/pixmaps/tgimg/r_lower_leg/r_leg_x_deform.png
+%%DATADIR%%/pixmaps/tgimg/r_lower_leg/r_lower_leg_depth_min.png
+%%DATADIR%%/pixmaps/tgimg/r_lower_leg/r_lower_leg_extralong.png
+%%DATADIR%%/pixmaps/tgimg/r_lower_leg/r_lower_leg_fat.png
+%%DATADIR%%/pixmaps/tgimg/r_lower_leg/r_lower_leg_height_min.png
+%%DATADIR%%/pixmaps/tgimg/r_lower_leg/r_lower_leg_long.png
+%%DATADIR%%/pixmaps/tgimg/r_lower_leg/r_lower_leg_natural_arc.png
+%%DATADIR%%/pixmaps/tgimg/r_lower_leg/r_lower_leg_scrawny.png
+%%DATADIR%%/pixmaps/tgimg/r_lower_leg/r_lower_leg_width_min.png
+%%DATADIR%%/pixmaps/tgimg/r_middlefinger/r_height_max_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/r_middlefinger/r_height_min_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/r_middlefinger/r_lenght_max_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/r_middlefinger/r_lenght_min_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/r_middlefinger/r_nail_cut_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/r_middlefinger/r_nail_cut_smooth_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/r_middlefinger/r_nail_lenght_max_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/r_middlefinger/r_nail_lenght_min_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/r_middlefinger/r_nail_lenght_out_max_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/r_middlefinger/r_nail_width_max_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/r_middlefinger/r_nail_width_min_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/r_middlefinger/r_width_max_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/r_middlefinger/r_width_min_middlefinger.png
+%%DATADIR%%/pixmaps/tgimg/r_pollex/r_height_max_pollex.png
+%%DATADIR%%/pixmaps/tgimg/r_pollex/r_height_min_pollex.png
+%%DATADIR%%/pixmaps/tgimg/r_pollex/r_lenght_max_pollex.png
+%%DATADIR%%/pixmaps/tgimg/r_pollex/r_lenght_min_pollex.png
+%%DATADIR%%/pixmaps/tgimg/r_pollex/r_nail_cut_pollex.png
+%%DATADIR%%/pixmaps/tgimg/r_pollex/r_nail_cut_smooth_pollex.png
+%%DATADIR%%/pixmaps/tgimg/r_pollex/r_nail_lenght_max_pollex.png
+%%DATADIR%%/pixmaps/tgimg/r_pollex/r_nail_lenght_min_pollex.png
+%%DATADIR%%/pixmaps/tgimg/r_pollex/r_nail_lenght_out_max_pollex.png
+%%DATADIR%%/pixmaps/tgimg/r_pollex/r_nail_width_max_pollex.png
+%%DATADIR%%/pixmaps/tgimg/r_pollex/r_nail_width_min_pollex.png
+%%DATADIR%%/pixmaps/tgimg/r_pollex/r_width_max_pollex.png
+%%DATADIR%%/pixmaps/tgimg/r_pollex/r_width_min_pollex.png
+%%DATADIR%%/pixmaps/tgimg/r_ringfinger/r_height_max_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/r_ringfinger/r_height_min_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/r_ringfinger/r_lenght_max_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/r_ringfinger/r_lenght_min_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/r_ringfinger/r_nail_cut_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/r_ringfinger/r_nail_cut_smooth_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/r_ringfinger/r_nail_lenght_max_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/r_ringfinger/r_nail_lenght_min_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/r_ringfinger/r_nail_lenght_out_max_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/r_ringfinger/r_nail_width_max_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/r_ringfinger/r_nail_width_min_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/r_ringfinger/r_width_max_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/r_ringfinger/r_width_min_ringfinger.png
+%%DATADIR%%/pixmaps/tgimg/r_shoulder/r_deltoid_muscular.png
+%%DATADIR%%/pixmaps/tgimg/r_shoulder/r_deltoid_scrawny.png
+%%DATADIR%%/pixmaps/tgimg/r_shoulder/r_shoulder_depth_min.png
+%%DATADIR%%/pixmaps/tgimg/r_shoulder/r_shoulder_lenght_max.png
+%%DATADIR%%/pixmaps/tgimg/r_shoulder/r_shoulder_lenght_min.png
+%%DATADIR%%/pixmaps/tgimg/r_shoulder/r_shoulder_min.png
+%%DATADIR%%/pixmaps/tgimg/r_shoulder/r_shoulder_move_backward.png
+%%DATADIR%%/pixmaps/tgimg/r_shoulder/r_shoulder_move_down.png
+%%DATADIR%%/pixmaps/tgimg/r_shoulder/r_shoulder_move_down2.png
+%%DATADIR%%/pixmaps/tgimg/r_shoulder/r_shoulder_move_forward.png
+%%DATADIR%%/pixmaps/tgimg/r_shoulder/r_shoulder_move_sideways_in.png
+%%DATADIR%%/pixmaps/tgimg/r_shoulder/r_shoulder_move_sideways_out.png
+%%DATADIR%%/pixmaps/tgimg/r_shoulder/r_shoulder_move_up.png
+%%DATADIR%%/pixmaps/tgimg/r_shoulder/r_shoulder_move_up2.png
+%%DATADIR%%/pixmaps/tgimg/r_shoulder/r_shoulder_scapula_move_backward.png
+%%DATADIR%%/pixmaps/tgimg/r_shoulder/r_shoulder_width.png
+%%DATADIR%%/pixmaps/tgimg/r_shoulder/r_trapezious_down.png
+%%DATADIR%%/pixmaps/tgimg/r_upper_arm/r_armpit_width.png
+%%DATADIR%%/pixmaps/tgimg/r_upper_arm/r_biceps_muscular.png
+%%DATADIR%%/pixmaps/tgimg/r_upper_arm/r_triceps.png
+%%DATADIR%%/pixmaps/tgimg/r_upper_arm/r_upper_arm_elbow_big.png
+%%DATADIR%%/pixmaps/tgimg/r_upper_arm/r_upper_arm_elbow_small.png
+%%DATADIR%%/pixmaps/tgimg/r_upper_arm/r_upper_arm_fat.png
+%%DATADIR%%/pixmaps/tgimg/r_upper_arm/r_upper_arm_flabby.png
+%%DATADIR%%/pixmaps/tgimg/r_upper_arm/r_upper_arm_height_min.png
+%%DATADIR%%/pixmaps/tgimg/r_upper_arm/r_upper_arm_long.png
+%%DATADIR%%/pixmaps/tgimg/r_upper_arm/r_upper_arm_scrawny.png
+%%DATADIR%%/pixmaps/tgimg/r_upper_arm/r_upper_arm_short.png
+%%DATADIR%%/pixmaps/tgimg/r_upper_arm/r_upper_arm_width_min.png
+%%DATADIR%%/pixmaps/tgimg/r_upper_leg/r_femoris_muscular.png
+%%DATADIR%%/pixmaps/tgimg/r_upper_leg/r_knee_big.png
+%%DATADIR%%/pixmaps/tgimg/r_upper_leg/r_knee_external_min.png
+%%DATADIR%%/pixmaps/tgimg/r_upper_leg/r_knee_small.png
+%%DATADIR%%/pixmaps/tgimg/r_upper_leg/r_knee_smooth.png
+%%DATADIR%%/pixmaps/tgimg/r_upper_leg/r_leg_upper_convex.png
+%%DATADIR%%/pixmaps/tgimg/r_upper_leg/r_quadricipes_muscular.png
+%%DATADIR%%/pixmaps/tgimg/r_upper_leg/r_thigh_external_max.png
+%%DATADIR%%/pixmaps/tgimg/r_upper_leg/r_thigh_internal_max.png
+%%DATADIR%%/pixmaps/tgimg/r_upper_leg/r_thigh_smooth.png
+%%DATADIR%%/pixmaps/tgimg/r_upper_leg/r_upper_back_leg_fat.png
+%%DATADIR%%/pixmaps/tgimg/r_upper_leg/r_upper_leg_cellulitis.png
+%%DATADIR%%/pixmaps/tgimg/r_upper_leg/r_upper_leg_fat.png
+%%DATADIR%%/pixmaps/tgimg/r_upper_leg/r_upper_leg_height_min.png
+%%DATADIR%%/pixmaps/tgimg/r_upper_leg/r_upper_leg_lenght_min.png
+%%DATADIR%%/pixmaps/tgimg/r_upper_leg/r_upper_leg_long.png
+%%DATADIR%%/pixmaps/tgimg/r_upper_leg/r_upper_leg_scrawny.png
+%%DATADIR%%/pixmaps/tgimg/r_upper_leg/r_upper_leg_width_min.png
+%%DATADIR%%/pixmaps/tgimg/teeth/teeth_center_none.png
+%%DATADIR%%/pixmaps/tgimg/teeth/teeth_center_out.png
+%%DATADIR%%/pixmaps/tgimg/teeth/teeth_depth_min.png
+%%DATADIR%%/pixmaps/tgimg/teeth/teeth_height_min.png
+%%DATADIR%%/pixmaps/tgimg/teeth/teeth_in.png
+%%DATADIR%%/pixmaps/tgimg/teeth/teeth_interdental.png
+%%DATADIR%%/pixmaps/tgimg/teeth/teeth_long.png
+%%DATADIR%%/pixmaps/tgimg/teeth/teeth_move_backward.png
+%%DATADIR%%/pixmaps/tgimg/teeth/teeth_out.png
+%%DATADIR%%/pixmaps/tgimg/teeth/teeth_pyorrhoea.png
+%%DATADIR%%/pixmaps/tgimg/teeth/teeth_realpeople.png
+%%DATADIR%%/pixmaps/tgimg/teeth/teeth_rot.png
+%%DATADIR%%/pixmaps/tgimg/teeth/teeth_sideways.png
+%%DATADIR%%/pixmaps/tgimg/teeth/teeth_upper_move_up.png
+%%DATADIR%%/pixmaps/tgimg/teeth/teeth_upper_sideways.png
+%%DATADIR%%/pixmaps/tgimg/teeth/teeth_width_min.png
+%%DATADIR%%/pixmaps/tgimg/temp/l_cheeck_hamster.png
+%%DATADIR%%/pixmaps/tgimg/temp/l_cheeck_pincer.png
+%%DATADIR%%/pixmaps/tgimg/temp/l_cheeck_pincer_big.png
+%%DATADIR%%/pixmaps/tgimg/temp/l_cheeck_puff_point.png
+%%DATADIR%%/pixmaps/tgimg/temp/l_eye_rot_antiorario.png
+%%DATADIR%%/pixmaps/tgimg/temp/l_eye_rot_orario.png
+%%DATADIR%%/pixmaps/tgimg/tongue/tongue_depth_max.png
+%%DATADIR%%/pixmaps/tgimg/tongue/tongue_fat.png
+%%DATADIR%%/pixmaps/tgimg/tongue/tongue_max_height.png
+%%DATADIR%%/pixmaps/tgimg/tongue/tongue_max_lenght.png
+%%DATADIR%%/pixmaps/tgimg/tongue/tongue_min_depth.png
+%%DATADIR%%/pixmaps/tgimg/tongue/tongue_min_height.png
+%%DATADIR%%/pixmaps/tgimg/tongue/tongue_min_lenght.png
+%%DATADIR%%/pixmaps/tgimg/tongue/tongue_min_width.png
+%%DATADIR%%/pixmaps/tgimg/tongue/tongue_move_backward.png
+%%DATADIR%%/pixmaps/tgimg/tongue/tongue_move_down.png
+%%DATADIR%%/pixmaps/tgimg/tongue/tongue_move_forward.png
+%%DATADIR%%/pixmaps/tgimg/tongue/tongue_move_left.png
+%%DATADIR%%/pixmaps/tgimg/tongue/tongue_move_right.png
+%%DATADIR%%/pixmaps/tgimg/tongue/tongue_move_up.png
+%%DATADIR%%/pixmaps/tgimg/tongue/tongue_tip_down.png
+%%DATADIR%%/pixmaps/tgimg/tongue/tongue_tip_left.png
+%%DATADIR%%/pixmaps/tgimg/tongue/tongue_tip_out.png
+%%DATADIR%%/pixmaps/tgimg/tongue/tongue_tip_right.png
+%%DATADIR%%/pixmaps/tgimg/tongue/tongue_tip_up.png
+%%DATADIR%%/pixmaps/tgimg/tongue/tongue_width_max.png
+%%DATADIR%%/pixmaps/tgimg/torso/aureola_large.png
+%%DATADIR%%/pixmaps/tgimg/torso/aureola_out.png
+%%DATADIR%%/pixmaps/tgimg/torso/back_arch_big.png
+%%DATADIR%%/pixmaps/tgimg/torso/breast_female_big_almost_round.png
+%%DATADIR%%/pixmaps/tgimg/torso/breast_out.png
+%%DATADIR%%/pixmaps/tgimg/torso/breast_slope.png
+%%DATADIR%%/pixmaps/tgimg/torso/breast_slope2.png
+%%DATADIR%%/pixmaps/tgimg/torso/clavicle_height_position.png
+%%DATADIR%%/pixmaps/tgimg/torso/clavicle_low_position.png
+%%DATADIR%%/pixmaps/tgimg/torso/clavicle_scrawny.png
+%%DATADIR%%/pixmaps/tgimg/torso/dorsi_back_out.png
+%%DATADIR%%/pixmaps/tgimg/torso/dorsi_muscular.png
+%%DATADIR%%/pixmaps/tgimg/torso/dorsi_scrawny.png
+%%DATADIR%%/pixmaps/tgimg/torso/erectors_muscular.png
+%%DATADIR%%/pixmaps/tgimg/torso/female_breast_big_almost_round.png
+%%DATADIR%%/pixmaps/tgimg/torso/female_breast_big_natural.png
+%%DATADIR%%/pixmaps/tgimg/torso/female_breast_little.png
+%%DATADIR%%/pixmaps/tgimg/torso/female_breast_medium.png
+%%DATADIR%%/pixmaps/tgimg/torso/female_breast_medium_gravity.png
+%%DATADIR%%/pixmaps/tgimg/torso/female_breast_teen.png
+%%DATADIR%%/pixmaps/tgimg/torso/l_pectoral_external_out.png
+%%DATADIR%%/pixmaps/tgimg/torso/l_side_out.png
+%%DATADIR%%/pixmaps/tgimg/torso/l_side_width_min.png
+%%DATADIR%%/pixmaps/tgimg/torso/nipple.png
+%%DATADIR%%/pixmaps/tgimg/torso/nipple_out.png
+%%DATADIR%%/pixmaps/tgimg/torso/nipple_point.png
+%%DATADIR%%/pixmaps/tgimg/torso/nipple_slope2.png
+%%DATADIR%%/pixmaps/tgimg/torso/pectoral_backward.png
+%%DATADIR%%/pixmaps/tgimg/torso/pectoral_big_width.png
+%%DATADIR%%/pixmaps/tgimg/torso/pectoral_down.png
+%%DATADIR%%/pixmaps/tgimg/torso/pectoral_foreward.png
+%%DATADIR%%/pixmaps/tgimg/torso/pectoral_muscular.png
+%%DATADIR%%/pixmaps/tgimg/torso/pectoral_scrawny.png
+%%DATADIR%%/pixmaps/tgimg/torso/pectoral_small_width.png
+%%DATADIR%%/pixmaps/tgimg/torso/pectoral_up.png
+%%DATADIR%%/pixmaps/tgimg/torso/r_pectoral_external_out.png
+%%DATADIR%%/pixmaps/tgimg/torso/r_side_out.png
+%%DATADIR%%/pixmaps/tgimg/torso/r_side_width_min.png
+%%DATADIR%%/pixmaps/tgimg/torso/rhomboid_muscular.png
+%%DATADIR%%/pixmaps/tgimg/torso/rib_front_flat.png
+%%DATADIR%%/pixmaps/tgimg/torso/rib_front_out.png
+%%DATADIR%%/pixmaps/tgimg/torso/teres_muscular.png
+%%DATADIR%%/pixmaps/tgimg/torso/torso_down.png
+%%DATADIR%%/pixmaps/tgimg/torso/torso_external_oblique_upper.png
+%%DATADIR%%/pixmaps/tgimg/torso/torso_fat.png
+%%DATADIR%%/pixmaps/tgimg/torso/torso_fat_woman.png
+%%DATADIR%%/pixmaps/tgimg/torso/torso_flabby.png
+%%DATADIR%%/pixmaps/tgimg/torso/torso_lenght_min.png
+%%DATADIR%%/pixmaps/tgimg/torso/torso_scapula_protrunding.png
+%%DATADIR%%/pixmaps/tgimg/torso/torso_up.png
+%%DATADIR%%/pixmaps/tgimg/torso/torso_width_min.png
+%%DATADIR%%/pixmaps/tgimg/torso/trapezious_muscular.png
+%%DATADIR%%/pixmaps/tgimg/torso/upper_torso_height_min.png
+%%DATADIR%%/pixmaps/tgimg/torso2/l_scoliosis.png
+%%DATADIR%%/pixmaps/tgimg/torso2/l_torso_width_max.png
+%%DATADIR%%/pixmaps/tgimg/torso2/l_torso_width_min.png
+%%DATADIR%%/pixmaps/tgimg/torso2/r_scoliosis.png
+%%DATADIR%%/pixmaps/tgimg/torso2/r_torso_width_max.png
+%%DATADIR%%/pixmaps/tgimg/torso2/r_torso_width_min.png
+%%DATADIR%%/pixmaps/tgimg/torso2/torso_height_max.png
+%%DATADIR%%/pixmaps/tgimg/torso2/torso_height_min.png
+%%DATADIR%%/pixmaps/tgimg/torso2/torso_lordosis.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_left_canine_in.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_left_canine_left_rotated.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_left_canine_long.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_left_canine_none.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_left_canine_out.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_left_canine_right_rotated.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_left_central_incisor_in.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_left_central_incisor_l_broken.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_left_central_incisor_l_broken2.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_left_central_incisor_l_rotated.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_left_central_incisor_long.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_left_central_incisor_none.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_left_central_incisor_out.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_left_central_incisor_r_broken.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_left_central_incisor_r_broken2.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_left_central_incisor_right_rotated.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_left_lateral_central_incisor_none.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_left_lateral_incisor_in.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_left_lateral_incisor_left_rotated.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_left_lateral_incisor_long.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_left_lateral_incisor_out.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_left_lateral_incisor_right_rotated.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_right_canine_depth_min.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_right_canine_in.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_right_canine_left_rotated.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_right_canine_long.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_right_canine_none.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_right_canine_out.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_right_canine_right_rotated.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_right_canine_width_min.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_right_central_incisor_depth_min.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_right_central_incisor_in.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_right_central_incisor_l_broken.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_right_central_incisor_l_broken2.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_right_central_incisor_left_rotated.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_right_central_incisor_long.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_right_central_incisor_narrow.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_right_central_incisor_none.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_right_central_incisor_out.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_right_central_incisor_r_broken.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_right_central_incisor_r_broken2.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_right_central_incisor_right_rotated.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_right_central_incisor_width_min.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_right_lateral_central_incisor_none.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_right_lateral_incisor_depth_min.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_right_lateral_incisor_in.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_right_lateral_incisor_left_rotated.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_right_lateral_incisor_long.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_right_lateral_incisor_out.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_right_lateral_incisor_right_rotated.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_center/teeth_right_lateral_incisor_width_min.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_left/teeth_left_first_molar_in.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_left/teeth_left_first_molar_left_rotated.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_left/teeth_left_first_molar_long.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_left/teeth_left_first_molar_none.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_left/teeth_left_first_molar_out.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_left/teeth_left_first_molar_right_rotated.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_left/teeth_left_first_premolar_in.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_left/teeth_left_first_premolar_left_rotated.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_left/teeth_left_first_premolar_long.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_left/teeth_left_first_premolar_none.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_left/teeth_left_first_premolar_out.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_left/teeth_left_first_premolar_right_rotated.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_left/teeth_left_second_molar_in.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_left/teeth_left_second_molar_left_rotated.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_left/teeth_left_second_molar_none.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_left/teeth_left_second_molar_out.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_left/teeth_left_second_molar_right_rotated.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_left/teeth_left_second_molar_up.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_left/teeth_left_second_premolar_in.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_left/teeth_left_second_premolar_left_rotated.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_left/teeth_left_second_premolar_long.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_left/teeth_left_second_premolar_none.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_left/teeth_left_second_premolar_out.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_left/teeth_left_second_premolar_right_rotated.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_left/teeth_left_third_molar_in.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_left/teeth_left_third_molar_left_rotated.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_left/teeth_left_third_molar_none.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_left/teeth_left_third_molar_out.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_left/teeth_left_third_molar_right_rotated.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_left/teeth_left_third_molar_up.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_right/teeth_right_first_molar_depth_min.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_right/teeth_right_first_molar_in.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_right/teeth_right_first_molar_left_rotated.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_right/teeth_right_first_molar_long.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_right/teeth_right_first_molar_none.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_right/teeth_right_first_molar_out.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_right/teeth_right_first_molar_right_rotated.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_right/teeth_right_first_molar_width_min.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_right/teeth_right_first_premolar_depth_min.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_right/teeth_right_first_premolar_in.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_right/teeth_right_first_premolar_left_rotated.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_right/teeth_right_first_premolar_long.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_right/teeth_right_first_premolar_none.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_right/teeth_right_first_premolar_out.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_right/teeth_right_first_premolar_right_rotated.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_right/teeth_right_first_premolar_width_min.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_right/teeth_right_second_molar_depth_min.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_right/teeth_right_second_molar_in.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_right/teeth_right_second_molar_left_rotated.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_right/teeth_right_second_molar_long.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_right/teeth_right_second_molar_none.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_right/teeth_right_second_molar_out.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_right/teeth_right_second_molar_right_rotated.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_right/teeth_right_second_molar_width_min.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_right/teeth_right_second_premolar_depth_min.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_right/teeth_right_second_premolar_in.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_right/teeth_right_second_premolar_left_rotated.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_right/teeth_right_second_premolar_long.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_right/teeth_right_second_premolar_none.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_right/teeth_right_second_premolar_out.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_right/teeth_right_second_premolar_right_rotated.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_right/teeth_right_second_premolar_width_min.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_right/teeth_right_third_molar_in.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_right/teeth_right_third_molar_left_rotated.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_right/teeth_right_third_molar_long.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_right/teeth_right_third_molar_none.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_right/teeth_right_third_molar_out.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_right/teeth_right_third_molar_right_rotated.png
+%%DATADIR%%/pixmaps/tgimg/upper_teeth_right/teeth_right_third_molar_width_min.png
+%%DATADIR%%/pixmaps/ui/background.png
+%%DATADIR%%/pixmaps/ui/body_01.png
+%%DATADIR%%/pixmaps/ui/body_02.png
+%%DATADIR%%/pixmaps/ui/body_03.png
+%%DATADIR%%/pixmaps/ui/body_04.png
+%%DATADIR%%/pixmaps/ui/body_05.png
+%%DATADIR%%/pixmaps/ui/body_06.png
+%%DATADIR%%/pixmaps/ui/body_07.png
+%%DATADIR%%/pixmaps/ui/body_08.png
+%%DATADIR%%/pixmaps/ui/body_09.png
+%%DATADIR%%/pixmaps/ui/body_10.png
+%%DATADIR%%/pixmaps/ui/body_11.png
+%%DATADIR%%/pixmaps/ui/body_12.png
+%%DATADIR%%/pixmaps/ui/body_13.png
+%%DATADIR%%/pixmaps/ui/body_14.png
+%%DATADIR%%/pixmaps/ui/body_15.png
+%%DATADIR%%/pixmaps/ui/body_16.png
+%%DATADIR%%/pixmaps/ui/body_17.png
+%%DATADIR%%/pixmaps/ui/body_18.png
+%%DATADIR%%/pixmaps/ui/body_19.png
+%%DATADIR%%/pixmaps/ui/body_20.png
+%%DATADIR%%/pixmaps/ui/body_21.png
+%%DATADIR%%/pixmaps/ui/body_22.png
+%%DATADIR%%/pixmaps/ui/body_23.png
+%%DATADIR%%/pixmaps/ui/body_24.png
+%%DATADIR%%/pixmaps/ui/body_25.png
+%%DATADIR%%/pixmaps/ui/body_26.png
+%%DATADIR%%/pixmaps/ui/body_27.png
+%%DATADIR%%/pixmaps/ui/characters.png
+%%DATADIR%%/pixmaps/ui/close_panel.png
+%%DATADIR%%/pixmaps/ui/console.png
+%%DATADIR%%/pixmaps/ui/face_01.png
+%%DATADIR%%/pixmaps/ui/face_02.png
+%%DATADIR%%/pixmaps/ui/face_03.png
+%%DATADIR%%/pixmaps/ui/face_04.png
+%%DATADIR%%/pixmaps/ui/face_05.png
+%%DATADIR%%/pixmaps/ui/face_06.png
+%%DATADIR%%/pixmaps/ui/face_07.png
+%%DATADIR%%/pixmaps/ui/face_08.png
+%%DATADIR%%/pixmaps/ui/face_09.png
+%%DATADIR%%/pixmaps/ui/face_10.png
+%%DATADIR%%/pixmaps/ui/face_11.png
+%%DATADIR%%/pixmaps/ui/face_12.png
+%%DATADIR%%/pixmaps/ui/face_13.png
+%%DATADIR%%/pixmaps/ui/face_14.png
+%%DATADIR%%/pixmaps/ui/face_15.png
+%%DATADIR%%/pixmaps/ui/face_16.png
+%%DATADIR%%/pixmaps/ui/face_17.png
+%%DATADIR%%/pixmaps/ui/face_18.png
+%%DATADIR%%/pixmaps/ui/face_19.png
+%%DATADIR%%/pixmaps/ui/face_20.png
+%%DATADIR%%/pixmaps/ui/face_21.png
+%%DATADIR%%/pixmaps/ui/face_22.png
+%%DATADIR%%/pixmaps/ui/face_23.png
+%%DATADIR%%/pixmaps/ui/face_24.png
+%%DATADIR%%/pixmaps/ui/face_25.png
+%%DATADIR%%/pixmaps/ui/face_26.png
+%%DATADIR%%/pixmaps/ui/face_27.png
+%%DATADIR%%/pixmaps/ui/face_28.png
+%%DATADIR%%/pixmaps/ui/face_29.png
+%%DATADIR%%/pixmaps/ui/face_30.png
+%%DATADIR%%/pixmaps/ui/face_31.png
+%%DATADIR%%/pixmaps/ui/face_32.png
+%%DATADIR%%/pixmaps/ui/face_33.png
+%%DATADIR%%/pixmaps/ui/face_34.png
+%%DATADIR%%/pixmaps/ui/face_35.png
+%%DATADIR%%/pixmaps/ui/face_36.png
+%%DATADIR%%/pixmaps/ui/filler1.png
+%%DATADIR%%/pixmaps/ui/frames_01.png
+%%DATADIR%%/pixmaps/ui/frames_06.png
+%%DATADIR%%/pixmaps/ui/frames_07.png
+%%DATADIR%%/pixmaps/ui/frames_08.png
+%%DATADIR%%/pixmaps/ui/hands_01.png
+%%DATADIR%%/pixmaps/ui/hands_02.png
+%%DATADIR%%/pixmaps/ui/hands_03.png
+%%DATADIR%%/pixmaps/ui/hands_04.png
+%%DATADIR%%/pixmaps/ui/hands_05.png
+%%DATADIR%%/pixmaps/ui/hands_06.png
+%%DATADIR%%/pixmaps/ui/hands_07.png
+%%DATADIR%%/pixmaps/ui/hands_08.png
+%%DATADIR%%/pixmaps/ui/hands_09.png
+%%DATADIR%%/pixmaps/ui/hands_10.png
+%%DATADIR%%/pixmaps/ui/hands_11.png
+%%DATADIR%%/pixmaps/ui/hands_12.png
+%%DATADIR%%/pixmaps/ui/hands_13.png
+%%DATADIR%%/pixmaps/ui/hands_14.png
+%%DATADIR%%/pixmaps/ui/hands_15.png
+%%DATADIR%%/pixmaps/ui/hands_16.png
+%%DATADIR%%/pixmaps/ui/hands_17.png
+%%DATADIR%%/pixmaps/ui/hands_18.png
+%%DATADIR%%/pixmaps/ui/mainpanel_01.png
+%%DATADIR%%/pixmaps/ui/mainpanel_02.png
+%%DATADIR%%/pixmaps/ui/mainpanel_03.png
+%%DATADIR%%/pixmaps/ui/mainpanel_04.png
+%%DATADIR%%/pixmaps/ui/mainpanel_05.png
+%%DATADIR%%/pixmaps/ui/mainpanel_06.png
+%%DATADIR%%/pixmaps/ui/mainpanel_07.png
+%%DATADIR%%/pixmaps/ui/mainpanel_08.png
+%%DATADIR%%/pixmaps/ui/mainpanel_09.png
+%%DATADIR%%/pixmaps/ui/mainpanel_10.png
+%%DATADIR%%/pixmaps/ui/mainpanel_11.png
+%%DATADIR%%/pixmaps/ui/mainpanel_12.png
+%%DATADIR%%/pixmaps/ui/mainpanel_13.png
+%%DATADIR%%/pixmaps/ui/mainpanel_14.png
+%%DATADIR%%/pixmaps/ui/mainpanel_15.png
+%%DATADIR%%/pixmaps/ui/mainpanel_16.png
+%%DATADIR%%/pixmaps/ui/mainpanel_17.png
+%%DATADIR%%/pixmaps/ui/mainpanel_18.png
+%%DATADIR%%/pixmaps/ui/mainpanel_19.png
+%%DATADIR%%/pixmaps/ui/mainpanel_20.png
+%%DATADIR%%/pixmaps/ui/mainpanel_21.png
+%%DATADIR%%/pixmaps/ui/mainpanel_22.png
+%%DATADIR%%/pixmaps/ui/mainpanel_23.png
+%%DATADIR%%/pixmaps/ui/mainpanel_24.png
+%%DATADIR%%/pixmaps/ui/mainpanel_25.png
+%%DATADIR%%/pixmaps/ui/mainpanel_26.png
+%%DATADIR%%/pixmaps/ui/mainpanel_27.png
+%%DATADIR%%/pixmaps/ui/montaggio.png
+%%DATADIR%%/pixmaps/ui/mybs.png
+%%DATADIR%%/pixmaps/ui/ns_body_01.png
+%%DATADIR%%/pixmaps/ui/ns_body_02.png
+%%DATADIR%%/pixmaps/ui/ns_body_03.png
+%%DATADIR%%/pixmaps/ui/ns_body_04.png
+%%DATADIR%%/pixmaps/ui/ns_body_05.png
+%%DATADIR%%/pixmaps/ui/ns_body_06.png
+%%DATADIR%%/pixmaps/ui/ns_body_07.png
+%%DATADIR%%/pixmaps/ui/ns_body_08.png
+%%DATADIR%%/pixmaps/ui/ns_body_09.png
+%%DATADIR%%/pixmaps/ui/ns_body_10.png
+%%DATADIR%%/pixmaps/ui/ns_body_11.png
+%%DATADIR%%/pixmaps/ui/ns_body_12.png
+%%DATADIR%%/pixmaps/ui/ns_body_13.png
+%%DATADIR%%/pixmaps/ui/ns_body_14.png
+%%DATADIR%%/pixmaps/ui/ns_body_15.png
+%%DATADIR%%/pixmaps/ui/ns_body_16.png
+%%DATADIR%%/pixmaps/ui/ns_body_17.png
+%%DATADIR%%/pixmaps/ui/ns_body_18.png
+%%DATADIR%%/pixmaps/ui/ns_body_19.png
+%%DATADIR%%/pixmaps/ui/ns_body_20.png
+%%DATADIR%%/pixmaps/ui/ns_body_21.png
+%%DATADIR%%/pixmaps/ui/ns_body_22.png
+%%DATADIR%%/pixmaps/ui/ns_body_23.png
+%%DATADIR%%/pixmaps/ui/ns_body_24.png
+%%DATADIR%%/pixmaps/ui/ns_body_25.png
+%%DATADIR%%/pixmaps/ui/ns_body_26.png
+%%DATADIR%%/pixmaps/ui/ns_body_27.png
+%%DATADIR%%/pixmaps/ui/ns_characters.png
+%%DATADIR%%/pixmaps/ui/ns_face_01.png
+%%DATADIR%%/pixmaps/ui/ns_face_02.png
+%%DATADIR%%/pixmaps/ui/ns_face_03.png
+%%DATADIR%%/pixmaps/ui/ns_face_04.png
+%%DATADIR%%/pixmaps/ui/ns_face_05.png
+%%DATADIR%%/pixmaps/ui/ns_face_06.png
+%%DATADIR%%/pixmaps/ui/ns_face_07.png
+%%DATADIR%%/pixmaps/ui/ns_face_08.png
+%%DATADIR%%/pixmaps/ui/ns_face_09.png
+%%DATADIR%%/pixmaps/ui/ns_face_10.png
+%%DATADIR%%/pixmaps/ui/ns_face_11.png
+%%DATADIR%%/pixmaps/ui/ns_face_12.png
+%%DATADIR%%/pixmaps/ui/ns_face_13.png
+%%DATADIR%%/pixmaps/ui/ns_face_14.png
+%%DATADIR%%/pixmaps/ui/ns_face_15.png
+%%DATADIR%%/pixmaps/ui/ns_face_16.png
+%%DATADIR%%/pixmaps/ui/ns_face_17.png
+%%DATADIR%%/pixmaps/ui/ns_face_18.png
+%%DATADIR%%/pixmaps/ui/ns_face_19.png
+%%DATADIR%%/pixmaps/ui/ns_face_20.png
+%%DATADIR%%/pixmaps/ui/ns_face_21.png
+%%DATADIR%%/pixmaps/ui/ns_face_22.png
+%%DATADIR%%/pixmaps/ui/ns_face_23.png
+%%DATADIR%%/pixmaps/ui/ns_face_24.png
+%%DATADIR%%/pixmaps/ui/ns_face_25.png
+%%DATADIR%%/pixmaps/ui/ns_face_26.png
+%%DATADIR%%/pixmaps/ui/ns_face_27.png
+%%DATADIR%%/pixmaps/ui/ns_face_28.png
+%%DATADIR%%/pixmaps/ui/ns_face_29.png
+%%DATADIR%%/pixmaps/ui/ns_face_30.png
+%%DATADIR%%/pixmaps/ui/ns_face_31.png
+%%DATADIR%%/pixmaps/ui/ns_face_32.png
+%%DATADIR%%/pixmaps/ui/ns_face_33.png
+%%DATADIR%%/pixmaps/ui/ns_face_34.png
+%%DATADIR%%/pixmaps/ui/ns_face_35.png
+%%DATADIR%%/pixmaps/ui/ns_face_36.png
+%%DATADIR%%/pixmaps/ui/ns_hands_01.png
+%%DATADIR%%/pixmaps/ui/ns_hands_02.png
+%%DATADIR%%/pixmaps/ui/ns_hands_03.png
+%%DATADIR%%/pixmaps/ui/ns_hands_04.png
+%%DATADIR%%/pixmaps/ui/ns_hands_05.png
+%%DATADIR%%/pixmaps/ui/ns_hands_06.png
+%%DATADIR%%/pixmaps/ui/ns_hands_07.png
+%%DATADIR%%/pixmaps/ui/ns_hands_08.png
+%%DATADIR%%/pixmaps/ui/ns_hands_09.png
+%%DATADIR%%/pixmaps/ui/ns_hands_10.png
+%%DATADIR%%/pixmaps/ui/ns_hands_11.png
+%%DATADIR%%/pixmaps/ui/ns_hands_12.png
+%%DATADIR%%/pixmaps/ui/ns_hands_13.png
+%%DATADIR%%/pixmaps/ui/ns_hands_14.png
+%%DATADIR%%/pixmaps/ui/ns_hands_15.png
+%%DATADIR%%/pixmaps/ui/ns_hands_16.png
+%%DATADIR%%/pixmaps/ui/ns_hands_17.png
+%%DATADIR%%/pixmaps/ui/ns_hands_18.png
+%%DATADIR%%/pixmaps/ui/ns_teeth_01.png
+%%DATADIR%%/pixmaps/ui/ns_teeth_02.png
+%%DATADIR%%/pixmaps/ui/ns_teeth_03.png
+%%DATADIR%%/pixmaps/ui/ns_teeth_04.png
+%%DATADIR%%/pixmaps/ui/ns_teeth_05.png
+%%DATADIR%%/pixmaps/ui/ns_teeth_06.png
+%%DATADIR%%/pixmaps/ui/ns_teeth_07.png
+%%DATADIR%%/pixmaps/ui/ns_teeth_08.png
+%%DATADIR%%/pixmaps/ui/ns_teeth_09.png
+%%DATADIR%%/pixmaps/ui/reset.png
+%%DATADIR%%/pixmaps/ui/rotations_01.png
+%%DATADIR%%/pixmaps/ui/rotations_02.png
+%%DATADIR%%/pixmaps/ui/rotations_03.png
+%%DATADIR%%/pixmaps/ui/rotations_04.png
+%%DATADIR%%/pixmaps/ui/rotations_05.png
+%%DATADIR%%/pixmaps/ui/rotations_06.png
+%%DATADIR%%/pixmaps/ui/rotations_07.png
+%%DATADIR%%/pixmaps/ui/rotations_08.png
+%%DATADIR%%/pixmaps/ui/rotations_09.png
+%%DATADIR%%/pixmaps/ui/rotations_10.png
+%%DATADIR%%/pixmaps/ui/rotations_11.png
+%%DATADIR%%/pixmaps/ui/rotations_12.png
+%%DATADIR%%/pixmaps/ui/rotations_13.png
+%%DATADIR%%/pixmaps/ui/rotations_14.png
+%%DATADIR%%/pixmaps/ui/rotations_15.png
+%%DATADIR%%/pixmaps/ui/rotations_16.png
+%%DATADIR%%/pixmaps/ui/rotations_17.png
+%%DATADIR%%/pixmaps/ui/rotations_18.png
+%%DATADIR%%/pixmaps/ui/rotations_19.png
+%%DATADIR%%/pixmaps/ui/rotations_20.png
+%%DATADIR%%/pixmaps/ui/rotations_21.png
+%%DATADIR%%/pixmaps/ui/rotations_22.png
+%%DATADIR%%/pixmaps/ui/rotations_23.png
+%%DATADIR%%/pixmaps/ui/rotations_24.png
+%%DATADIR%%/pixmaps/ui/rotations_25.png
+%%DATADIR%%/pixmaps/ui/rotations_26.png
+%%DATADIR%%/pixmaps/ui/rotations_27.png
+%%DATADIR%%/pixmaps/ui/rotations_28.png
+%%DATADIR%%/pixmaps/ui/rotations_29.png
+%%DATADIR%%/pixmaps/ui/rotations_30.png
+%%DATADIR%%/pixmaps/ui/rotations_31.png
+%%DATADIR%%/pixmaps/ui/rotations_32.png
+%%DATADIR%%/pixmaps/ui/rotations_33.png
+%%DATADIR%%/pixmaps/ui/rotations_34.png
+%%DATADIR%%/pixmaps/ui/rotations_35.png
+%%DATADIR%%/pixmaps/ui/rotations_36.png
+%%DATADIR%%/pixmaps/ui/rotations_37.png
+%%DATADIR%%/pixmaps/ui/rotations_38.png
+%%DATADIR%%/pixmaps/ui/rotations_39.png
+%%DATADIR%%/pixmaps/ui/rotations_40.png
+%%DATADIR%%/pixmaps/ui/rotations_41.png
+%%DATADIR%%/pixmaps/ui/rotations_42.png
+%%DATADIR%%/pixmaps/ui/rotations_43.png
+%%DATADIR%%/pixmaps/ui/rotations_44.png
+%%DATADIR%%/pixmaps/ui/rotations_45.png
+%%DATADIR%%/pixmaps/ui/rotations_46.png
+%%DATADIR%%/pixmaps/ui/rotations_47.png
+%%DATADIR%%/pixmaps/ui/rotations_48.png
+%%DATADIR%%/pixmaps/ui/rotations_49.png
+%%DATADIR%%/pixmaps/ui/rotations_50.png
+%%DATADIR%%/pixmaps/ui/rotations_51.png
+%%DATADIR%%/pixmaps/ui/rotations_52.png
+%%DATADIR%%/pixmaps/ui/rotations_53.png
+%%DATADIR%%/pixmaps/ui/rotations_54.png
+%%DATADIR%%/pixmaps/ui/rotations_55.png
+%%DATADIR%%/pixmaps/ui/rotations_56.png
+%%DATADIR%%/pixmaps/ui/rotations_57.png
+%%DATADIR%%/pixmaps/ui/rotations_58.png
+%%DATADIR%%/pixmaps/ui/rotations_59.png
+%%DATADIR%%/pixmaps/ui/rotations_60.png
+%%DATADIR%%/pixmaps/ui/rotations_61.png
+%%DATADIR%%/pixmaps/ui/rotations_62.png
+%%DATADIR%%/pixmaps/ui/rotations_63.png
+%%DATADIR%%/pixmaps/ui/rotations_64.png
+%%DATADIR%%/pixmaps/ui/rotations_65.png
+%%DATADIR%%/pixmaps/ui/rotations_66.png
+%%DATADIR%%/pixmaps/ui/rotations_67.png
+%%DATADIR%%/pixmaps/ui/rotations_68.png
+%%DATADIR%%/pixmaps/ui/rotations_69.png
+%%DATADIR%%/pixmaps/ui/rotations_70.png
+%%DATADIR%%/pixmaps/ui/rotations_71.png
+%%DATADIR%%/pixmaps/ui/rotations_72.png
+%%DATADIR%%/pixmaps/ui/rotations_73.png
+%%DATADIR%%/pixmaps/ui/rotations_74.png
+%%DATADIR%%/pixmaps/ui/rotations_75.png
+%%DATADIR%%/pixmaps/ui/rotations_76.png
+%%DATADIR%%/pixmaps/ui/rotations_77.png
+%%DATADIR%%/pixmaps/ui/rotations_78.png
+%%DATADIR%%/pixmaps/ui/rotations_79.png
+%%DATADIR%%/pixmaps/ui/rotations_80.png
+%%DATADIR%%/pixmaps/ui/rotations_81.png
+%%DATADIR%%/pixmaps/ui/rotations_82.png
+%%DATADIR%%/pixmaps/ui/rotations_83.png
+%%DATADIR%%/pixmaps/ui/rotations_84.png
+%%DATADIR%%/pixmaps/ui/setting1.png
+%%DATADIR%%/pixmaps/ui/setting2.png
+%%DATADIR%%/pixmaps/ui/setting3.png
+%%DATADIR%%/pixmaps/ui/setting4.png
+%%DATADIR%%/pixmaps/ui/setting5.png
+%%DATADIR%%/pixmaps/ui/setting6.png
+%%DATADIR%%/pixmaps/ui/setting7.png
+%%DATADIR%%/pixmaps/ui/setting8.png
+%%DATADIR%%/pixmaps/ui/setting9.png
+%%DATADIR%%/pixmaps/ui/splash_01.png
+%%DATADIR%%/pixmaps/ui/teeth_01.png
+%%DATADIR%%/pixmaps/ui/teeth_02.png
+%%DATADIR%%/pixmaps/ui/teeth_03.png
+%%DATADIR%%/pixmaps/ui/teeth_04.png
+%%DATADIR%%/pixmaps/ui/teeth_05.png
+%%DATADIR%%/pixmaps/ui/teeth_06.png
+%%DATADIR%%/pixmaps/ui/teeth_07.png
+%%DATADIR%%/pixmaps/ui/teeth_08.png
+%%DATADIR%%/pixmaps/ui/teeth_09.png
+%%DATADIR%%/pixmaps/ui/toolbar_01.png
+%%DATADIR%%/pixmaps/ui/toolbar_02.png
+%%DATADIR%%/pixmaps/ui/toolbar_03.png
+%%DATADIR%%/pixmaps/ui/toolbar_04.png
+%%DATADIR%%/pixmaps/ui/toolbar_05.png
+%%DATADIR%%/pixmaps/ui/toolbar_06.png
+%%DATADIR%%/pixmaps/ui/toolbar_07.png
+%%DATADIR%%/pixmaps/ui/toolbar_08.png
+%%DATADIR%%/pixmaps/ui/toolbar_09.png
+%%DATADIR%%/pixmaps/ui/toolbar_10.png
+%%DATADIR%%/pixmaps/ui/toolbar_11.png
+%%DATADIR%%/pixmaps/ui/toolbar_12.png
+%%DATADIR%%/pixmaps/ui/toolbar_13.png
+%%DATADIR%%/pixmaps/ui/toolbar_14.png
+%%DATADIR%%/pixmaps/ui/tooltips.png
+%%DATADIR%%/pixmaps/ui/tooltips_label_1.png
+%%DATADIR%%/pixmaps/ui/tooltips_label_2.png
+%%DATADIR%%/pixmaps/ui/tooltips_label_3.png
+%%DATADIR%%/pixmaps/ui/utilitybar_01.png
+%%DATADIR%%/pixmaps/ui/utilitybar_02.png
+%%DATADIR%%/pixmaps/ui/utilitybar_03.png
+%%DATADIR%%/pixmaps/ui/utilitybar_04.png
+%%DATADIR%%/pixmaps/ui/utilitybar_05.png
+%%DATADIR%%/pixmaps/ui/utilitybar_06.png
+%%DATADIR%%/render/l_eye/l_eye_big.png
+%%DATADIR%%/render/l_eye/l_eye_box.png
+%%DATADIR%%/render/l_eye/l_eye_bulb_back.png
+%%DATADIR%%/render/l_eye/l_eye_bulb_down.png
+%%DATADIR%%/render/l_eye/l_eye_bulb_extrasize.png
+%%DATADIR%%/render/l_eye/l_eye_bulb_forward.png
+%%DATADIR%%/render/l_eye/l_eye_bulb_left.png
+%%DATADIR%%/render/l_eye/l_eye_bulb_minisize.png
+%%DATADIR%%/render/l_eye/l_eye_bulb_right.png
+%%DATADIR%%/render/l_eye/l_eye_bulb_size.png
+%%DATADIR%%/render/l_eye/l_eye_bulb_up.png
+%%DATADIR%%/render/l_eye/l_eye_center_height_max.png
+%%DATADIR%%/render/l_eye/l_eye_distance_max.png
+%%DATADIR%%/render/l_eye/l_eye_distance_min.png
+%%DATADIR%%/render/l_eye/l_eye_down.png
+%%DATADIR%%/render/l_eye/l_eye_fold.png
+%%DATADIR%%/render/l_eye/l_eye_fold_double.png
+%%DATADIR%%/render/l_eye/l_eye_fold_lower.png
+%%DATADIR%%/render/l_eye/l_eye_iris_min.png
+%%DATADIR%%/render/l_eye/l_eye_no_bulb.png
+%%DATADIR%%/render/l_eye/l_eye_overhang.png
+%%DATADIR%%/render/l_eye/l_eye_small.png
+%%DATADIR%%/render/l_eye/l_eye_up.png
+%%DATADIR%%/render/l_eye/l_eye_wrinkles.png
+%%DATADIR%%/render/l_eye/l_eyelashes_curve.png
+%%DATADIR%%/render/l_eye/l_eyelashes_long.png
+%%DATADIR%%/render/l_eye/l_eyelashes_none.png
+%%DATADIR%%/render/l_eye/l_eyelids_out.png
+%%DATADIR%%/render/l_eye/l_eyelids_up.png
+%%DATADIR%%/render/l_eye2/l_eye_bulb_rot_down.png
+%%DATADIR%%/render/l_eye2/l_eye_bulb_rot_in.png
+%%DATADIR%%/render/l_eye2/l_eye_bulb_rot_out.png
+%%DATADIR%%/render/l_eye2/l_eye_bulb_rot_up.png
+%%DATADIR%%/render/l_eye2/l_eye_close.png
+%%DATADIR%%/render/l_eye2/l_eye_external_corner_down.png
+%%DATADIR%%/render/l_eye2/l_eyebrow_inner_down.png
+%%DATADIR%%/render/l_eye2/l_eyebrow_inner_up.png
+%%DATADIR%%/render/l_eye2/l_eyebrow_outer_up.png
+%%DATADIR%%/render/l_eye2/l_eyebrown_lower_down.png
+%%DATADIR%%/render/l_eye2/l_eyelash_upper_down.png
+%%DATADIR%%/render/l_foot/l_ankle_big.png
+%%DATADIR%%/render/l_foot/l_ankle_fat.png
+%%DATADIR%%/render/l_foot/l_ankle_little.png
+%%DATADIR%%/render/l_foot/l_foot_bigtoe_valgus.png
+%%DATADIR%%/render/l_foot/l_foot_fingers_long.png
+%%DATADIR%%/render/l_foot/l_foot_height_max.png
+%%DATADIR%%/render/l_foot/l_foot_height_min.png
+%%DATADIR%%/render/l_foot/l_foot_long.png
+%%DATADIR%%/render/l_foot/l_foot_plantare_down.png
+%%DATADIR%%/render/l_foot/l_foot_plantare_up.png
+%%DATADIR%%/render/l_foot/l_foot_scrawny.png
+%%DATADIR%%/render/l_foot/l_foot_short.png
+%%DATADIR%%/render/l_foot/l_foot_width_max.png
+%%DATADIR%%/render/l_foot/l_foot_width_min.png
+%%DATADIR%%/render/l_foot/l_heel_none.png
+%%DATADIR%%/render/l_foot/r_foot_long.png
+%%DATADIR%%/render/neck/mid_neck_narrow.png
+%%DATADIR%%/render/neck/neck_apple_none.png
+%%DATADIR%%/render/neck/neck_apple_prominent.png
+%%DATADIR%%/render/neck/neck_backward.png
+%%DATADIR%%/render/neck/neck_base_min.png
+%%DATADIR%%/render/neck/neck_fat.png
+%%DATADIR%%/render/neck/neck_long.png
+%%DATADIR%%/render/neck/neck_muscular.png
+%%DATADIR%%/render/neck/neck_old.png
+%%DATADIR%%/render/neck/neck_out.png
+%%DATADIR%%/render/neck/neck_scrawny.png
+%%DATADIR%%/render/neck/neck_short.png
+%%DATADIR%%/render/neck/neck_smooth.png
+%%DATADIR%%/render/neck/neck_width_min.png
+%%DATADIR%%/render/ns_head/back_geom_plane.png
+%%DATADIR%%/render/ns_head/back_geom_round.png
+%%DATADIR%%/render/ns_head/face_none_superhero.png
+%%DATADIR%%/render/ns_head/face_none_superhero2.png
+%%DATADIR%%/render/ns_head/head_1hole_back.png
+%%DATADIR%%/render/ns_head/head_2holes_back.png
+%%DATADIR%%/render/ns_head/head_2holes_back2.png
+%%DATADIR%%/render/ns_head/head_2holes_front_center_down.png
+%%DATADIR%%/render/ns_head/head_2holes_front_center_up.png
+%%DATADIR%%/render/ns_head/head_2holes_front_side_down.png
+%%DATADIR%%/render/ns_head/head_2holes_front_side_up.png
+%%DATADIR%%/render/ns_head/head_2holes_side.png
+%%DATADIR%%/render/ns_head/head_2holes_top.png
+%%DATADIR%%/render/ns_head/head_4holes_down.png
+%%DATADIR%%/render/ns_head/head_4holes_up.png
+%%DATADIR%%/render/ns_head/head_baloon.png
+%%DATADIR%%/render/ns_head/head_bihorn_lateral.png
+%%DATADIR%%/render/ns_head/head_bihorn_lateral_curve.png
+%%DATADIR%%/render/ns_head/head_bihorn_lateral_puff.png
+%%DATADIR%%/render/ns_head/head_dicotomy.png
+%%DATADIR%%/render/ns_head/head_down.png
+%%DATADIR%%/render/ns_head/head_face_side.png
+%%DATADIR%%/render/ns_head/head_flat_face.png
+%%DATADIR%%/render/ns_head/head_forward.png
+%%DATADIR%%/render/ns_head/head_none.png
+%%DATADIR%%/render/ns_head/head_protunding_back_long.png
+%%DATADIR%%/render/ns_head/head_protunding_back_long_puff.png
+%%DATADIR%%/render/ns_head/head_protunding_back_long_puff_down.png
+%%DATADIR%%/render/ns_head/head_protunding_back_long_puff_down_large.png
+%%DATADIR%%/render/ns_head/head_protunding_front_wave.png
+%%DATADIR%%/render/ns_head/head_sunray1.png
+%%DATADIR%%/render/ns_head/head_sunray2.png
+%%DATADIR%%/render/ns_head/head_sunray3.png
+%%DATADIR%%/render/ns_head/head_sunray4.png
+%%DATADIR%%/render/ns_head/head_sunray5.png
+%%DATADIR%%/render/ns_head/head_sunray6.png
+%%DATADIR%%/render/ns_l_eye/L_eye_none_cilinder_in.png
+%%DATADIR%%/render/ns_l_eye/l_eye_bulb_2extraup.png
+%%DATADIR%%/render/ns_l_eye/l_eye_bulb_cilinder.png
+%%DATADIR%%/render/ns_l_eye/l_eye_bulb_cilinder_toon.png
+%%DATADIR%%/render/ns_l_eye/l_eye_bulb_cube.png
+%%DATADIR%%/render/ns_l_eye/l_eye_bulb_cube_toon.png
+%%DATADIR%%/render/ns_l_eye/l_eye_bulb_depth.png
+%%DATADIR%%/render/ns_l_eye/l_eye_bulb_extraback.png
+%%DATADIR%%/render/ns_l_eye/l_eye_bulb_extraforward.png
+%%DATADIR%%/render/ns_l_eye/l_eye_bulb_extraleft.png
+%%DATADIR%%/render/ns_l_eye/l_eye_bulb_extraright.png
+%%DATADIR%%/render/ns_l_eye/l_eye_bulb_extraup.png
+%%DATADIR%%/render/ns_l_eye/l_eye_bulb_height.png
+%%DATADIR%%/render/ns_l_eye/l_eye_bulb_none.png
+%%DATADIR%%/render/ns_l_eye/l_eye_bulb_prisma.png
+%%DATADIR%%/render/ns_l_eye/l_eye_bulb_prisma_toon.png
+%%DATADIR%%/render/ns_l_eye/l_eye_bulb_tosphere.png
+%%DATADIR%%/render/ns_l_eye/l_eye_bulb_width.png
+%%DATADIR%%/render/ns_l_eye/l_eye_monocle_eye_forward.png
+%%DATADIR%%/render/ns_l_eye/l_eye_monocle_eye_none.png
+%%DATADIR%%/render/ns_l_eye/l_eye_monocle_eye_none_cone.png
+%%DATADIR%%/render/ns_l_eye/l_eye_monocle_eye_star.png
+%%DATADIR%%/render/ns_l_eye/l_eye_monocle_eye_star_in.png
+%%DATADIR%%/render/ns_l_eye/l_eye_monocle_simple.png
+%%DATADIR%%/render/ns_l_eye/l_eye_monocle_snail.png
+%%DATADIR%%/render/ns_l_eye/l_eye_none_cube.png
+%%DATADIR%%/render/ns_l_eye/l_eye_none_cube_in.png
+%%DATADIR%%/render/ns_l_eye/l_eye_none_flatten.png
+%%DATADIR%%/render/ns_l_eye/l_eye_none_flatten2.png
+%%DATADIR%%/render/ns_l_eye/l_eye_none_flatten3.png
+%%DATADIR%%/render/ns_l_eye/l_eye_none_in.png
+%%DATADIR%%/render/ns_l_eye/l_eye_none_in1.png
+%%DATADIR%%/render/ns_l_eye/l_eye_none_in2.png
+%%DATADIR%%/render/ns_l_eye/l_eye_none_in3.png
+%%DATADIR%%/render/ns_l_eye/l_eye_none_in4.png
+%%DATADIR%%/render/ns_l_eye/l_eye_none_in5.png
+%%DATADIR%%/render/ns_l_eye/l_eye_none_in6.png
+%%DATADIR%%/render/ns_l_eye/l_eye_none_in7.png
+%%DATADIR%%/render/ns_l_eye/l_eye_none_in8.png
+%%DATADIR%%/render/ns_l_eye/l_eye_none_in9.png
+%%DATADIR%%/render/ns_l_eye/l_eye_none_out.png
+%%DATADIR%%/render/ns_l_eye/l_eye_plica semilunaris_fantasy.png
+%%DATADIR%%/render/ns_l_eye/l_eye_plica semilunaris_half_left.png
+%%DATADIR%%/render/ns_l_eye/l_eye_plica semilunaris_half_right.png
+%%DATADIR%%/render/ns_l_eye/l_eye_toon1.png
+%%DATADIR%%/render/ns_l_eye/l_eye_toon2.png
+%%DATADIR%%/render/ns_l_eye/l_eyelashes_lower_extralong.png
+%%DATADIR%%/render/ns_l_eye/l_eyelashes_upper_extralong.png
+%%DATADIR%%/render/ns_l_eye/l_eyelashes_upper_extralong_down.png
+%%DATADIR%%/render/ns_l_eye/l_eyelashes_upper_extralong_forward.png
+%%DATADIR%%/render/ns_l_eye/r_eye_bulb_extraright.png
+%%DATADIR%%/render/torso/aureola_large.png
+%%DATADIR%%/render/torso/aureola_out.png
+%%DATADIR%%/render/torso/back_arch_big.png
+%%DATADIR%%/render/torso/breast_female_big_almost_round.png
+%%DATADIR%%/render/torso/breast_out.png
+%%DATADIR%%/render/torso/breast_slope.png
+%%DATADIR%%/render/torso/breast_slope2.png
+%%DATADIR%%/render/torso/clavicle_height_position.png
+%%DATADIR%%/render/torso/clavicle_low_position.png
+%%DATADIR%%/render/torso/clavicle_scrawny.png
+%%DATADIR%%/render/torso/dorsi_back_out.png
+%%DATADIR%%/render/torso/dorsi_muscular.png
+%%DATADIR%%/render/torso/dorsi_scrawny.png
+%%DATADIR%%/render/torso/erectors_muscular.png
+%%DATADIR%%/render/torso/female_breast_big_almost_round.png
+%%DATADIR%%/render/torso/female_breast_big_natural.png
+%%DATADIR%%/render/torso/female_breast_little.png
+%%DATADIR%%/render/torso/female_breast_medium.png
+%%DATADIR%%/render/torso/female_breast_medium_gravity.png
+%%DATADIR%%/render/torso/female_breast_teen.png
+%%DATADIR%%/render/torso/l_pectoral_external_out.png
+%%DATADIR%%/render/torso/l_side_out.png
+%%DATADIR%%/render/torso/l_side_width_min.png
+%%DATADIR%%/render/torso/nipple.png
+%%DATADIR%%/render/torso/nipple_out.png
+%%DATADIR%%/render/torso/nipple_point.png
+%%DATADIR%%/render/torso/nipple_slope2.png
+%%DATADIR%%/render/torso/pectoral_backward.png
+%%DATADIR%%/render/torso/pectoral_big_width.png
+%%DATADIR%%/render/torso/pectoral_down.png
+%%DATADIR%%/render/torso/pectoral_foreward.png
+%%DATADIR%%/render/torso/pectoral_muscular.png
+%%DATADIR%%/render/torso/pectoral_scrawny.png
+%%DATADIR%%/render/torso/pectoral_small_width.png
+%%DATADIR%%/render/torso/pectoral_up.png
+%%DATADIR%%/render/torso/r_pectoral_external_out.png
+%%DATADIR%%/render/torso/r_side_out.png
+%%DATADIR%%/render/torso/r_side_width_min.png
+%%DATADIR%%/render/torso/rhomboid_muscular.png
+%%DATADIR%%/render/torso/rib_front_flat.png
+%%DATADIR%%/render/torso/rib_front_out.png
+%%DATADIR%%/render/torso/teres_muscular.png
+%%DATADIR%%/render/torso/torso_down.png
+%%DATADIR%%/render/torso/torso_external_oblique_upper.png
+%%DATADIR%%/render/torso/torso_fat.png
+%%DATADIR%%/render/torso/torso_fat_woman.png
+%%DATADIR%%/render/torso/torso_flabby.png
+%%DATADIR%%/render/torso/torso_lenght_min.png
+%%DATADIR%%/render/torso/torso_scapula_protrunding.png
+%%DATADIR%%/render/torso/torso_up.png
+%%DATADIR%%/render/torso/torso_width_min.png
+%%DATADIR%%/render/torso/trapezious_muscular.png
+%%DATADIR%%/render/torso/upper_torso_height_min.png
+%%DATADIR%%/ribObjs/Base.rib
+%%DATADIR%%/ribObjs/Plane.rib
+%%DATADIR%%/rib_data/out_render.rib.template
+%%DATADIR%%/rib_data/out_render_preview.rib.template
+%%DATADIR%%/rib_data/out_render_toon.rib.template
+%%DATADIR%%/rib_data/shaders_data/IDcs.sl
+%%DATADIR%%/rib_data/shaders_data/IDfill.sl
+%%DATADIR%%/rib_data/shaders_data/IDoutline.sl
+%%DATADIR%%/rib_data/shaders_data/MHbump.sl
+%%DATADIR%%/rib_data/shaders_data/MHbump.slx
+%%DATADIR%%/rib_data/shaders_data/MHshadowspot.sl
+%%DATADIR%%/rib_data/shaders_data/MHskin.sl
+%%DATADIR%%/rib_data/shaders_data/MHskin.slx
+%%DATADIR%%/rib_data/textures_data/skin_bump.tif
+%%DATADIR%%/rib_data/textures_data/skin_color.tif
+%%DATADIR%%/rib_data/textures_data/skin_opacity.tif
+%%DATADIR%%/rib_data/textures_data/skin_reflect.tif
+%%DATADIR%%/rib_data/textures_data/skin_roughness.tif
+%%DATADIR%%/rib_data/textures_data/skin_sss_val.tif
+%%DATADIR%%/rotations/000_right_footfinger_5_2/r_foot_5_2_rot1.target
+%%DATADIR%%/rotations/000_right_footfinger_5_2/r_foot_5_2_rot1.target.info
+%%DATADIR%%/rotations/001_right_footfinger_5_1/r_foot_5_1_rot1-.target
+%%DATADIR%%/rotations/001_right_footfinger_5_1/r_foot_5_1_rot1-.target.info
+%%DATADIR%%/rotations/001_right_footfinger_5_1/r_foot_5_1_rot1.target
+%%DATADIR%%/rotations/001_right_footfinger_5_1/r_foot_5_1_rot1.target.info
+%%DATADIR%%/rotations/002_right_footfinger_4_2/r_foot_4_2_rot1.target
+%%DATADIR%%/rotations/002_right_footfinger_4_2/r_foot_4_2_rot1.target.info
+%%DATADIR%%/rotations/003_right_footfinger_4_1/r_foot_4_1_rot1-.target
+%%DATADIR%%/rotations/003_right_footfinger_4_1/r_foot_4_1_rot1-.target.info
+%%DATADIR%%/rotations/003_right_footfinger_4_1/r_foot_4_1_rot1.target
+%%DATADIR%%/rotations/003_right_footfinger_4_1/r_foot_4_1_rot1.target.info
+%%DATADIR%%/rotations/004_right_footfinger_3_2/r_foot_3_2_rot1.target
+%%DATADIR%%/rotations/004_right_footfinger_3_2/r_foot_3_2_rot1.target.info
+%%DATADIR%%/rotations/005_right_footfinger_3_1/r_foot_3_1_rot1-.target
+%%DATADIR%%/rotations/005_right_footfinger_3_1/r_foot_3_1_rot1-.target.info
+%%DATADIR%%/rotations/005_right_footfinger_3_1/r_foot_3_1_rot1.target
+%%DATADIR%%/rotations/005_right_footfinger_3_1/r_foot_3_1_rot1.target.info
+%%DATADIR%%/rotations/006_right_footfinger_2_2/r_foot_2_2_rot1.target
+%%DATADIR%%/rotations/006_right_footfinger_2_2/r_foot_2_2_rot1.target.info
+%%DATADIR%%/rotations/007_right_footfinger_2_1/r_foot_2_1_rot1-.target
+%%DATADIR%%/rotations/007_right_footfinger_2_1/r_foot_2_1_rot1-.target.info
+%%DATADIR%%/rotations/007_right_footfinger_2_1/r_foot_2_1_rot1.target
+%%DATADIR%%/rotations/007_right_footfinger_2_1/r_foot_2_1_rot1.target.info
+%%DATADIR%%/rotations/008_right_footfinger_1_2/r_foot_1_2_rot1.target
+%%DATADIR%%/rotations/008_right_footfinger_1_2/r_foot_1_2_rot1.target.info
+%%DATADIR%%/rotations/009_right_footfinger_1_1/r_foot_1_1_rot1-.target
+%%DATADIR%%/rotations/009_right_footfinger_1_1/r_foot_1_1_rot1-.target.info
+%%DATADIR%%/rotations/009_right_footfinger_1_1/r_foot_1_1_rot1.target
+%%DATADIR%%/rotations/009_right_footfinger_1_1/r_foot_1_1_rot1.target.info
+%%DATADIR%%/rotations/020_right_foot/right_foot_rot1-.target
+%%DATADIR%%/rotations/020_right_foot/right_foot_rot1-.target.info
+%%DATADIR%%/rotations/020_right_foot/right_foot_rot1.target
+%%DATADIR%%/rotations/020_right_foot/right_foot_rot1.target.info
+%%DATADIR%%/rotations/020_right_foot/right_foot_rot1_00-.rot
+%%DATADIR%%/rotations/020_right_foot/right_foot_rot1_00-.rot.info
+%%DATADIR%%/rotations/020_right_foot/right_foot_rot1_00.rot
+%%DATADIR%%/rotations/020_right_foot/right_foot_rot1_00.rot.info
+%%DATADIR%%/rotations/020_right_foot/right_foot_rot1_01-.rot
+%%DATADIR%%/rotations/020_right_foot/right_foot_rot1_01-.rot.info
+%%DATADIR%%/rotations/020_right_foot/right_foot_rot2-.target
+%%DATADIR%%/rotations/020_right_foot/right_foot_rot2-.target.info
+%%DATADIR%%/rotations/020_right_foot/right_foot_rot2.target
+%%DATADIR%%/rotations/020_right_foot/right_foot_rot2.target.info
+%%DATADIR%%/rotations/020_right_foot/right_foot_rot3-.target
+%%DATADIR%%/rotations/020_right_foot/right_foot_rot3-.target.info
+%%DATADIR%%/rotations/020_right_foot/right_foot_rot3.target
+%%DATADIR%%/rotations/020_right_foot/right_foot_rot3.target.info
+%%DATADIR%%/rotations/021_left_footfinger_5_2/l_foot_5_2_rot1.target
+%%DATADIR%%/rotations/021_left_footfinger_5_2/l_foot_5_2_rot1.target.info
+%%DATADIR%%/rotations/022_left_footfinger_5_1/l_foot_5_1_rot1-.target
+%%DATADIR%%/rotations/022_left_footfinger_5_1/l_foot_5_1_rot1-.target.info
+%%DATADIR%%/rotations/022_left_footfinger_5_1/l_foot_5_1_rot1.target
+%%DATADIR%%/rotations/022_left_footfinger_5_1/l_foot_5_1_rot1.target.info
+%%DATADIR%%/rotations/023_left_footfinger_4_2/l_foot_4_2_rot1.target
+%%DATADIR%%/rotations/023_left_footfinger_4_2/l_foot_4_2_rot1.target.info
+%%DATADIR%%/rotations/024_left_footfinger_4_1/l_foot_4_1_rot1-.target
+%%DATADIR%%/rotations/024_left_footfinger_4_1/l_foot_4_1_rot1-.target.info
+%%DATADIR%%/rotations/024_left_footfinger_4_1/l_foot_4_1_rot1.target
+%%DATADIR%%/rotations/024_left_footfinger_4_1/l_foot_4_1_rot1.target.info
+%%DATADIR%%/rotations/025_left_footfinger_3_2/l_foot_3_2_rot1.target
+%%DATADIR%%/rotations/025_left_footfinger_3_2/l_foot_3_2_rot1.target.info
+%%DATADIR%%/rotations/026_left_footfinger_3_1/l_foot_3_1_rot1-.target
+%%DATADIR%%/rotations/026_left_footfinger_3_1/l_foot_3_1_rot1-.target.info
+%%DATADIR%%/rotations/026_left_footfinger_3_1/l_foot_3_1_rot1.target
+%%DATADIR%%/rotations/026_left_footfinger_3_1/l_foot_3_1_rot1.target.info
+%%DATADIR%%/rotations/027_left_footfinger_2_2/l_foot_2_2_rot1.target
+%%DATADIR%%/rotations/027_left_footfinger_2_2/l_foot_2_2_rot1.target.info
+%%DATADIR%%/rotations/028_left_footfinger_2_1/l_foot_2_1_rot1-.target
+%%DATADIR%%/rotations/028_left_footfinger_2_1/l_foot_2_1_rot1-.target.info
+%%DATADIR%%/rotations/028_left_footfinger_2_1/l_foot_2_1_rot1.target
+%%DATADIR%%/rotations/028_left_footfinger_2_1/l_foot_2_1_rot1.target.info
+%%DATADIR%%/rotations/029_left_footfinger_1_2/l_foot_1_2_rot1.target
+%%DATADIR%%/rotations/029_left_footfinger_1_2/l_foot_1_2_rot1.target.info
+%%DATADIR%%/rotations/030_left_footfinger_1_1/l_foot_1_1_rot1-.target
+%%DATADIR%%/rotations/030_left_footfinger_1_1/l_foot_1_1_rot1-.target.info
+%%DATADIR%%/rotations/030_left_footfinger_1_1/l_foot_1_1_rot1.target
+%%DATADIR%%/rotations/030_left_footfinger_1_1/l_foot_1_1_rot1.target.info
+%%DATADIR%%/rotations/040_left_foot/l_foot_rot1-.target
+%%DATADIR%%/rotations/040_left_foot/l_foot_rot1-.target.info
+%%DATADIR%%/rotations/040_left_foot/l_foot_rot1.target
+%%DATADIR%%/rotations/040_left_foot/l_foot_rot1.target.info
+%%DATADIR%%/rotations/040_left_foot/l_foot_rot1_00-.rot
+%%DATADIR%%/rotations/040_left_foot/l_foot_rot1_00-.rot.info
+%%DATADIR%%/rotations/040_left_foot/l_foot_rot1_00.rot
+%%DATADIR%%/rotations/040_left_foot/l_foot_rot1_00.rot.info
+%%DATADIR%%/rotations/040_left_foot/l_foot_rot1_01-.rot
+%%DATADIR%%/rotations/040_left_foot/l_foot_rot1_01-.rot.info
+%%DATADIR%%/rotations/040_left_foot/l_foot_rot2-.target
+%%DATADIR%%/rotations/040_left_foot/l_foot_rot2-.target.info
+%%DATADIR%%/rotations/040_left_foot/l_foot_rot2.target
+%%DATADIR%%/rotations/040_left_foot/l_foot_rot2.target.info
+%%DATADIR%%/rotations/040_left_foot/l_foot_rot3-.target
+%%DATADIR%%/rotations/040_left_foot/l_foot_rot3-.target.info
+%%DATADIR%%/rotations/040_left_foot/l_foot_rot3.target
+%%DATADIR%%/rotations/040_left_foot/l_foot_rot3.target.info
+%%DATADIR%%/rotations/041_right_pollex_3/r_pollex3_rot1.png
+%%DATADIR%%/rotations/041_right_pollex_3/r_pollex3_rot1.target
+%%DATADIR%%/rotations/041_right_pollex_3/r_pollex3_rot1.target.info
+%%DATADIR%%/rotations/042_right_pollex_2/r_pollex2_rot1.target
+%%DATADIR%%/rotations/042_right_pollex_2/r_pollex2_rot1.target.info
+%%DATADIR%%/rotations/042_right_pollex_2/r_pollex2_rot2.target
+%%DATADIR%%/rotations/042_right_pollex_2/r_pollex2_rot2.target.info
+%%DATADIR%%/rotations/043_right_pollex_1/r_pollex1_rot1-.target
+%%DATADIR%%/rotations/043_right_pollex_1/r_pollex1_rot1-.target.info
+%%DATADIR%%/rotations/043_right_pollex_1/r_pollex1_rot1.target
+%%DATADIR%%/rotations/043_right_pollex_1/r_pollex1_rot1.target.info
+%%DATADIR%%/rotations/043_right_pollex_1/r_pollex1_rot3.target
+%%DATADIR%%/rotations/043_right_pollex_1/r_pollex1_rot3.target.info
+%%DATADIR%%/rotations/044_right_forefinger_3/r_forefinger3_rot2.target
+%%DATADIR%%/rotations/044_right_forefinger_3/r_forefinger3_rot2.target.info
+%%DATADIR%%/rotations/045_right_forefinger_2/r_forefinger2_rot2.target
+%%DATADIR%%/rotations/045_right_forefinger_2/r_forefinger2_rot2.target.info
+%%DATADIR%%/rotations/046_right_forefinger_1/r_forefinger1_rot2-.target
+%%DATADIR%%/rotations/046_right_forefinger_1/r_forefinger1_rot2-.target.info
+%%DATADIR%%/rotations/046_right_forefinger_1/r_forefinger1_rot2.target
+%%DATADIR%%/rotations/046_right_forefinger_1/r_forefinger1_rot2.target.info
+%%DATADIR%%/rotations/046_right_forefinger_1/r_forefinger1_rot3-.target
+%%DATADIR%%/rotations/046_right_forefinger_1/r_forefinger1_rot3-.target.info
+%%DATADIR%%/rotations/046_right_forefinger_1/r_forefinger1_rot3.target
+%%DATADIR%%/rotations/046_right_forefinger_1/r_forefinger1_rot3.target.info
+%%DATADIR%%/rotations/047_right_middlefinger_3/r_middlefinger3_rot2.target
+%%DATADIR%%/rotations/047_right_middlefinger_3/r_middlefinger3_rot2.target.info
+%%DATADIR%%/rotations/048_right_middlefinger_2/r_middlefinger2_rot2.target
+%%DATADIR%%/rotations/048_right_middlefinger_2/r_middlefinger2_rot2.target.info
+%%DATADIR%%/rotations/049_right_middlefinger_1/r_middlefinger1_rot2-.target
+%%DATADIR%%/rotations/049_right_middlefinger_1/r_middlefinger1_rot2-.target.info
+%%DATADIR%%/rotations/049_right_middlefinger_1/r_middlefinger1_rot2.target
+%%DATADIR%%/rotations/049_right_middlefinger_1/r_middlefinger1_rot2.target.info
+%%DATADIR%%/rotations/049_right_middlefinger_1/r_middlefinger1_rot3-.target
+%%DATADIR%%/rotations/049_right_middlefinger_1/r_middlefinger1_rot3-.target.info
+%%DATADIR%%/rotations/049_right_middlefinger_1/r_middlefinger1_rot3.target
+%%DATADIR%%/rotations/049_right_middlefinger_1/r_middlefinger1_rot3.target.info
+%%DATADIR%%/rotations/050_right_ringfinger_3/r_ringfinger3_rot2.target
+%%DATADIR%%/rotations/050_right_ringfinger_3/r_ringfinger3_rot2.target.info
+%%DATADIR%%/rotations/051_right_ringfinger_2/r_ringfinger2_rot2.target
+%%DATADIR%%/rotations/051_right_ringfinger_2/r_ringfinger2_rot2.target.info
+%%DATADIR%%/rotations/052_right_ringfinger_1/r_ringfinger1_rot2-.target
+%%DATADIR%%/rotations/052_right_ringfinger_1/r_ringfinger1_rot2-.target.info
+%%DATADIR%%/rotations/052_right_ringfinger_1/r_ringfinger1_rot2.target
+%%DATADIR%%/rotations/052_right_ringfinger_1/r_ringfinger1_rot2.target.info
+%%DATADIR%%/rotations/052_right_ringfinger_1/r_ringfinger1_rot3-.target
+%%DATADIR%%/rotations/052_right_ringfinger_1/r_ringfinger1_rot3-.target.info
+%%DATADIR%%/rotations/052_right_ringfinger_1/r_ringfinger1_rot3.target
+%%DATADIR%%/rotations/052_right_ringfinger_1/r_ringfinger1_rot3.target.info
+%%DATADIR%%/rotations/053_right_littlefinger_3/r_littlefinger3_rot2.target
+%%DATADIR%%/rotations/053_right_littlefinger_3/r_littlefinger3_rot2.target.info
+%%DATADIR%%/rotations/054_right_littlefinger_2/r_littlefinger2_rot2.target
+%%DATADIR%%/rotations/054_right_littlefinger_2/r_littlefinger2_rot2.target.info
+%%DATADIR%%/rotations/055_right_littlefinger_1/r_littlefinger1_rot2-.target
+%%DATADIR%%/rotations/055_right_littlefinger_1/r_littlefinger1_rot2-.target.info
+%%DATADIR%%/rotations/055_right_littlefinger_1/r_littlefinger1_rot2.target
+%%DATADIR%%/rotations/055_right_littlefinger_1/r_littlefinger1_rot2.target.info
+%%DATADIR%%/rotations/055_right_littlefinger_1/r_littlefinger1_rot3-.target
+%%DATADIR%%/rotations/055_right_littlefinger_1/r_littlefinger1_rot3-.target.info
+%%DATADIR%%/rotations/055_right_littlefinger_1/r_littlefinger1_rot3.target
+%%DATADIR%%/rotations/055_right_littlefinger_1/r_littlefinger1_rot3.target.info
+%%DATADIR%%/rotations/060_right_hand/right_hand_rot1-.target
+%%DATADIR%%/rotations/060_right_hand/right_hand_rot1-.target.info
+%%DATADIR%%/rotations/060_right_hand/right_hand_rot1.target
+%%DATADIR%%/rotations/060_right_hand/right_hand_rot1.target.info
+%%DATADIR%%/rotations/060_right_hand/right_hand_rot2-.target
+%%DATADIR%%/rotations/060_right_hand/right_hand_rot2-.target.info
+%%DATADIR%%/rotations/060_right_hand/right_hand_rot2.target
+%%DATADIR%%/rotations/060_right_hand/right_hand_rot2.target.info
+%%DATADIR%%/rotations/060_right_hand/right_hand_rot3-.target
+%%DATADIR%%/rotations/060_right_hand/right_hand_rot3-.target.info
+%%DATADIR%%/rotations/060_right_hand/right_hand_rot3.target
+%%DATADIR%%/rotations/060_right_hand/right_hand_rot3.target.info
+%%DATADIR%%/rotations/061_left_pollex_3/l_pollex3_rot1.target
+%%DATADIR%%/rotations/061_left_pollex_3/l_pollex3_rot1.target.info
+%%DATADIR%%/rotations/062_left_pollex_2/l_pollex2_rot1.target
+%%DATADIR%%/rotations/062_left_pollex_2/l_pollex2_rot1.target.info
+%%DATADIR%%/rotations/062_left_pollex_2/l_pollex2_rot2.target
+%%DATADIR%%/rotations/062_left_pollex_2/l_pollex2_rot2.target.info
+%%DATADIR%%/rotations/063_left_pollex_1/l_pollex1_rot1-.target
+%%DATADIR%%/rotations/063_left_pollex_1/l_pollex1_rot1-.target.info
+%%DATADIR%%/rotations/063_left_pollex_1/l_pollex1_rot1.target
+%%DATADIR%%/rotations/063_left_pollex_1/l_pollex1_rot1.target.info
+%%DATADIR%%/rotations/063_left_pollex_1/l_pollex1_rot3.target
+%%DATADIR%%/rotations/063_left_pollex_1/l_pollex1_rot3.target.info
+%%DATADIR%%/rotations/064_left_forefinger_3/l_forefinger3_rot2.target
+%%DATADIR%%/rotations/064_left_forefinger_3/l_forefinger3_rot2.target.info
+%%DATADIR%%/rotations/065_left_forefinger_2/l_forefinger2_rot2.target
+%%DATADIR%%/rotations/065_left_forefinger_2/l_forefinger2_rot2.target.info
+%%DATADIR%%/rotations/066_left_forefinger_1/l_forefinger1_rot2-.target
+%%DATADIR%%/rotations/066_left_forefinger_1/l_forefinger1_rot2-.target.info
+%%DATADIR%%/rotations/066_left_forefinger_1/l_forefinger1_rot2.target
+%%DATADIR%%/rotations/066_left_forefinger_1/l_forefinger1_rot2.target.info
+%%DATADIR%%/rotations/066_left_forefinger_1/l_forefinger1_rot3-.target
+%%DATADIR%%/rotations/066_left_forefinger_1/l_forefinger1_rot3-.target.info
+%%DATADIR%%/rotations/066_left_forefinger_1/l_forefinger1_rot3.target
+%%DATADIR%%/rotations/066_left_forefinger_1/l_forefinger1_rot3.target.info
+%%DATADIR%%/rotations/067_left_middlefinger_3/l_middlefinger3_rot2.target
+%%DATADIR%%/rotations/067_left_middlefinger_3/l_middlefinger3_rot2.target.info
+%%DATADIR%%/rotations/068_left_middlefinger_2/l_middlefinger2_rot2.target
+%%DATADIR%%/rotations/068_left_middlefinger_2/l_middlefinger2_rot2.target.info
+%%DATADIR%%/rotations/069_left_middlefinger_1/l_middlefinger1_rot2-.target
+%%DATADIR%%/rotations/069_left_middlefinger_1/l_middlefinger1_rot2-.target.info
+%%DATADIR%%/rotations/069_left_middlefinger_1/l_middlefinger1_rot2.target
+%%DATADIR%%/rotations/069_left_middlefinger_1/l_middlefinger1_rot2.target.info
+%%DATADIR%%/rotations/069_left_middlefinger_1/l_middlefinger1_rot3-.target
+%%DATADIR%%/rotations/069_left_middlefinger_1/l_middlefinger1_rot3-.target.info
+%%DATADIR%%/rotations/069_left_middlefinger_1/l_middlefinger1_rot3.target
+%%DATADIR%%/rotations/069_left_middlefinger_1/l_middlefinger1_rot3.target.info
+%%DATADIR%%/rotations/070_left_ringfinger_3/l_ringfinger3_rot2.target
+%%DATADIR%%/rotations/070_left_ringfinger_3/l_ringfinger3_rot2.target.info
+%%DATADIR%%/rotations/071_left_ringfinger_2/l_ringfinger2_rot2.target
+%%DATADIR%%/rotations/071_left_ringfinger_2/l_ringfinger2_rot2.target.info
+%%DATADIR%%/rotations/072_left_ringfinger_1/l_ringfinger1_rot2-.target
+%%DATADIR%%/rotations/072_left_ringfinger_1/l_ringfinger1_rot2-.target.info
+%%DATADIR%%/rotations/072_left_ringfinger_1/l_ringfinger1_rot2.target
+%%DATADIR%%/rotations/072_left_ringfinger_1/l_ringfinger1_rot2.target.info
+%%DATADIR%%/rotations/072_left_ringfinger_1/l_ringfinger1_rot3-.target
+%%DATADIR%%/rotations/072_left_ringfinger_1/l_ringfinger1_rot3-.target.info
+%%DATADIR%%/rotations/072_left_ringfinger_1/l_ringfinger1_rot3.target
+%%DATADIR%%/rotations/072_left_ringfinger_1/l_ringfinger1_rot3.target.info
+%%DATADIR%%/rotations/073_left_littlefinger_3/l_littlefinger3_rot2.target
+%%DATADIR%%/rotations/073_left_littlefinger_3/l_littlefinger3_rot2.target.info
+%%DATADIR%%/rotations/074_left_littlefinger_2/l_littlefinger2_rot2.target
+%%DATADIR%%/rotations/074_left_littlefinger_2/l_littlefinger2_rot2.target.info
+%%DATADIR%%/rotations/075_left_littlefinger_1/l_littlefinger1_rot2-.target
+%%DATADIR%%/rotations/075_left_littlefinger_1/l_littlefinger1_rot2-.target.info
+%%DATADIR%%/rotations/075_left_littlefinger_1/l_littlefinger1_rot2.target
+%%DATADIR%%/rotations/075_left_littlefinger_1/l_littlefinger1_rot2.target.info
+%%DATADIR%%/rotations/075_left_littlefinger_1/l_littlefinger1_rot3-.target
+%%DATADIR%%/rotations/075_left_littlefinger_1/l_littlefinger1_rot3-.target.info
+%%DATADIR%%/rotations/075_left_littlefinger_1/l_littlefinger1_rot3.target
+%%DATADIR%%/rotations/075_left_littlefinger_1/l_littlefinger1_rot3.target.info
+%%DATADIR%%/rotations/080_left_hand/l_hand_rot1-.target
+%%DATADIR%%/rotations/080_left_hand/l_hand_rot1-.target.info
+%%DATADIR%%/rotations/080_left_hand/l_hand_rot1.target
+%%DATADIR%%/rotations/080_left_hand/l_hand_rot1.target.info
+%%DATADIR%%/rotations/080_left_hand/l_hand_rot2-.target
+%%DATADIR%%/rotations/080_left_hand/l_hand_rot2-.target.info
+%%DATADIR%%/rotations/080_left_hand/l_hand_rot2.target
+%%DATADIR%%/rotations/080_left_hand/l_hand_rot2.target.info
+%%DATADIR%%/rotations/080_left_hand/l_hand_rot3-.target
+%%DATADIR%%/rotations/080_left_hand/l_hand_rot3-.target.info
+%%DATADIR%%/rotations/080_left_hand/l_hand_rot3.target
+%%DATADIR%%/rotations/080_left_hand/l_hand_rot3.target.info
+%%DATADIR%%/rotations/100_right_lower_leg/right_lower_leg_rot1.target
+%%DATADIR%%/rotations/100_right_lower_leg/right_lower_leg_rot1.target.info
+%%DATADIR%%/rotations/100_right_lower_leg/right_lower_leg_rot1_00.rot
+%%DATADIR%%/rotations/100_right_lower_leg/right_lower_leg_rot1_00.rot.info
+%%DATADIR%%/rotations/100_right_lower_leg/right_lower_leg_rot1_01.rot
+%%DATADIR%%/rotations/100_right_lower_leg/right_lower_leg_rot1_01.rot.info
+%%DATADIR%%/rotations/100_right_lower_leg/right_lower_leg_rot1_02.rot
+%%DATADIR%%/rotations/100_right_lower_leg/right_lower_leg_rot1_02.rot.info
+%%DATADIR%%/rotations/100_right_lower_leg/right_lower_leg_rot1_03.rot
+%%DATADIR%%/rotations/100_right_lower_leg/right_lower_leg_rot1_03.rot.info
+%%DATADIR%%/rotations/100_right_lower_leg/right_lower_leg_rot1_04.rot
+%%DATADIR%%/rotations/100_right_lower_leg/right_lower_leg_rot1_04.rot.info
+%%DATADIR%%/rotations/100_right_lower_leg/right_lower_leg_rot1_05.rot
+%%DATADIR%%/rotations/100_right_lower_leg/right_lower_leg_rot1_05.rot.info
+%%DATADIR%%/rotations/100_right_lower_leg/right_lower_leg_rot1_06.rot
+%%DATADIR%%/rotations/100_right_lower_leg/right_lower_leg_rot1_06.rot.info
+%%DATADIR%%/rotations/120_left_lower_leg/l_lower_leg_rot1.target
+%%DATADIR%%/rotations/120_left_lower_leg/l_lower_leg_rot1.target.info
+%%DATADIR%%/rotations/120_left_lower_leg/l_lower_leg_rot1_00.rot
+%%DATADIR%%/rotations/120_left_lower_leg/l_lower_leg_rot1_00.rot.info
+%%DATADIR%%/rotations/120_left_lower_leg/l_lower_leg_rot1_01.rot
+%%DATADIR%%/rotations/120_left_lower_leg/l_lower_leg_rot1_01.rot.info
+%%DATADIR%%/rotations/120_left_lower_leg/l_lower_leg_rot1_02.rot
+%%DATADIR%%/rotations/120_left_lower_leg/l_lower_leg_rot1_02.rot.info
+%%DATADIR%%/rotations/120_left_lower_leg/l_lower_leg_rot1_03.rot
+%%DATADIR%%/rotations/120_left_lower_leg/l_lower_leg_rot1_03.rot.info
+%%DATADIR%%/rotations/120_left_lower_leg/l_lower_leg_rot1_04.rot
+%%DATADIR%%/rotations/120_left_lower_leg/l_lower_leg_rot1_04.rot.info
+%%DATADIR%%/rotations/120_left_lower_leg/l_lower_leg_rot1_05.rot
+%%DATADIR%%/rotations/120_left_lower_leg/l_lower_leg_rot1_05.rot.info
+%%DATADIR%%/rotations/120_left_lower_leg/l_lower_leg_rot1_06.rot
+%%DATADIR%%/rotations/120_left_lower_leg/l_lower_leg_rot1_06.rot.info
+%%DATADIR%%/rotations/140_right_lower_arm/r_lower_arm_rot1.target
+%%DATADIR%%/rotations/140_right_lower_arm/r_lower_arm_rot1.target.info
+%%DATADIR%%/rotations/140_right_lower_arm/r_lower_arm_rot1_00.rot
+%%DATADIR%%/rotations/140_right_lower_arm/r_lower_arm_rot1_00.rot.info
+%%DATADIR%%/rotations/140_right_lower_arm/r_lower_arm_rot1_01.rot
+%%DATADIR%%/rotations/140_right_lower_arm/r_lower_arm_rot1_01.rot.info
+%%DATADIR%%/rotations/140_right_lower_arm/r_lower_arm_rot1_02.rot
+%%DATADIR%%/rotations/140_right_lower_arm/r_lower_arm_rot1_02.rot.info
+%%DATADIR%%/rotations/140_right_lower_arm/r_lower_arm_rot1_03.rot
+%%DATADIR%%/rotations/140_right_lower_arm/r_lower_arm_rot1_03.rot.info
+%%DATADIR%%/rotations/140_right_lower_arm/r_lower_arm_rot1_04.rot
+%%DATADIR%%/rotations/140_right_lower_arm/r_lower_arm_rot1_04.rot.info
+%%DATADIR%%/rotations/140_right_lower_arm/r_lower_arm_rot1_05.rot
+%%DATADIR%%/rotations/140_right_lower_arm/r_lower_arm_rot1_05.rot.info
+%%DATADIR%%/rotations/140_right_lower_arm/r_lower_arm_rot1_06.rot
+%%DATADIR%%/rotations/140_right_lower_arm/r_lower_arm_rot1_06.rot.info
+%%DATADIR%%/rotations/160_left_lower_arm/l_lower_arm_rot1.target
+%%DATADIR%%/rotations/160_left_lower_arm/l_lower_arm_rot1.target.info
+%%DATADIR%%/rotations/160_left_lower_arm/l_lower_arm_rot1_00.rot
+%%DATADIR%%/rotations/160_left_lower_arm/l_lower_arm_rot1_00.rot.info
+%%DATADIR%%/rotations/160_left_lower_arm/l_lower_arm_rot1_01.rot
+%%DATADIR%%/rotations/160_left_lower_arm/l_lower_arm_rot1_01.rot.info
+%%DATADIR%%/rotations/160_left_lower_arm/l_lower_arm_rot1_02.rot
+%%DATADIR%%/rotations/160_left_lower_arm/l_lower_arm_rot1_02.rot.info
+%%DATADIR%%/rotations/160_left_lower_arm/l_lower_arm_rot1_03.rot
+%%DATADIR%%/rotations/160_left_lower_arm/l_lower_arm_rot1_03.rot.info
+%%DATADIR%%/rotations/160_left_lower_arm/l_lower_arm_rot1_04.rot
+%%DATADIR%%/rotations/160_left_lower_arm/l_lower_arm_rot1_04.rot.info
+%%DATADIR%%/rotations/160_left_lower_arm/l_lower_arm_rot1_05.rot
+%%DATADIR%%/rotations/160_left_lower_arm/l_lower_arm_rot1_05.rot.info
+%%DATADIR%%/rotations/160_left_lower_arm/l_lower_arm_rot1_06.rot
+%%DATADIR%%/rotations/160_left_lower_arm/l_lower_arm_rot1_06.rot.info
+%%DATADIR%%/rotations/180_right_upper_leg/right_upper_leg_rot1-.target
+%%DATADIR%%/rotations/180_right_upper_leg/right_upper_leg_rot1-.target.info
+%%DATADIR%%/rotations/180_right_upper_leg/right_upper_leg_rot1.target
+%%DATADIR%%/rotations/180_right_upper_leg/right_upper_leg_rot1.target.info
+%%DATADIR%%/rotations/180_right_upper_leg/right_upper_leg_rot2-.target
+%%DATADIR%%/rotations/180_right_upper_leg/right_upper_leg_rot2-.target.info
+%%DATADIR%%/rotations/180_right_upper_leg/right_upper_leg_rot2.target
+%%DATADIR%%/rotations/180_right_upper_leg/right_upper_leg_rot2.target.info
+%%DATADIR%%/rotations/180_right_upper_leg/right_upper_leg_rot2_00-.rot
+%%DATADIR%%/rotations/180_right_upper_leg/right_upper_leg_rot2_00-.rot.info
+%%DATADIR%%/rotations/180_right_upper_leg/right_upper_leg_rot3-.target
+%%DATADIR%%/rotations/180_right_upper_leg/right_upper_leg_rot3-.target.info
+%%DATADIR%%/rotations/180_right_upper_leg/right_upper_leg_rot3.target
+%%DATADIR%%/rotations/180_right_upper_leg/right_upper_leg_rot3.target.info
+%%DATADIR%%/rotations/200_left_upper_leg/l_upper_leg_rot1-.target
+%%DATADIR%%/rotations/200_left_upper_leg/l_upper_leg_rot1-.target.info
+%%DATADIR%%/rotations/200_left_upper_leg/l_upper_leg_rot1.target
+%%DATADIR%%/rotations/200_left_upper_leg/l_upper_leg_rot1.target.info
+%%DATADIR%%/rotations/200_left_upper_leg/l_upper_leg_rot2-.target
+%%DATADIR%%/rotations/200_left_upper_leg/l_upper_leg_rot2-.target.info
+%%DATADIR%%/rotations/200_left_upper_leg/l_upper_leg_rot2.target
+%%DATADIR%%/rotations/200_left_upper_leg/l_upper_leg_rot2.target.info
+%%DATADIR%%/rotations/200_left_upper_leg/l_upper_leg_rot2_00-.rot
+%%DATADIR%%/rotations/200_left_upper_leg/l_upper_leg_rot2_00-.rot.info
+%%DATADIR%%/rotations/200_left_upper_leg/l_upper_leg_rot3-.target
+%%DATADIR%%/rotations/200_left_upper_leg/l_upper_leg_rot3-.target.info
+%%DATADIR%%/rotations/200_left_upper_leg/l_upper_leg_rot3.target
+%%DATADIR%%/rotations/200_left_upper_leg/l_upper_leg_rot3.target.info
+%%DATADIR%%/rotations/220_right_upper_arm/right_upper_arm_rot1-.target
+%%DATADIR%%/rotations/220_right_upper_arm/right_upper_arm_rot1-.target.info
+%%DATADIR%%/rotations/220_right_upper_arm/right_upper_arm_rot1.target
+%%DATADIR%%/rotations/220_right_upper_arm/right_upper_arm_rot1.target.info
+%%DATADIR%%/rotations/220_right_upper_arm/right_upper_arm_rot2-.target
+%%DATADIR%%/rotations/220_right_upper_arm/right_upper_arm_rot2-.target.info
+%%DATADIR%%/rotations/220_right_upper_arm/right_upper_arm_rot2.target
+%%DATADIR%%/rotations/220_right_upper_arm/right_upper_arm_rot2.target.info
+%%DATADIR%%/rotations/220_right_upper_arm/right_upper_arm_rot2_00-.rot
+%%DATADIR%%/rotations/220_right_upper_arm/right_upper_arm_rot2_00-.rot.info
+%%DATADIR%%/rotations/220_right_upper_arm/right_upper_arm_rot3-.target
+%%DATADIR%%/rotations/220_right_upper_arm/right_upper_arm_rot3-.target.info
+%%DATADIR%%/rotations/220_right_upper_arm/right_upper_arm_rot3.target
+%%DATADIR%%/rotations/220_right_upper_arm/right_upper_arm_rot3.target.info
+%%DATADIR%%/rotations/240_left_upper_arm/l_upper_arm_rot1-.target
+%%DATADIR%%/rotations/240_left_upper_arm/l_upper_arm_rot1-.target.info
+%%DATADIR%%/rotations/240_left_upper_arm/l_upper_arm_rot1.target
+%%DATADIR%%/rotations/240_left_upper_arm/l_upper_arm_rot1.target.info
+%%DATADIR%%/rotations/240_left_upper_arm/l_upper_arm_rot2-.target
+%%DATADIR%%/rotations/240_left_upper_arm/l_upper_arm_rot2-.target.info
+%%DATADIR%%/rotations/240_left_upper_arm/l_upper_arm_rot2.target
+%%DATADIR%%/rotations/240_left_upper_arm/l_upper_arm_rot2.target.info
+%%DATADIR%%/rotations/240_left_upper_arm/l_upper_arm_rot2_00-.rot
+%%DATADIR%%/rotations/240_left_upper_arm/l_upper_arm_rot2_00-.rot.info
+%%DATADIR%%/rotations/240_left_upper_arm/l_upper_arm_rot3-.target
+%%DATADIR%%/rotations/240_left_upper_arm/l_upper_arm_rot3-.target.info
+%%DATADIR%%/rotations/240_left_upper_arm/l_upper_arm_rot3.target
+%%DATADIR%%/rotations/240_left_upper_arm/l_upper_arm_rot3.target.info
+%%DATADIR%%/rotations/260_right_collar/right_collar_rot1-.target
+%%DATADIR%%/rotations/260_right_collar/right_collar_rot1-.target.info
+%%DATADIR%%/rotations/260_right_collar/right_collar_rot1.target
+%%DATADIR%%/rotations/260_right_collar/right_collar_rot1.target.info
+%%DATADIR%%/rotations/260_right_collar/right_collar_rot2-.target
+%%DATADIR%%/rotations/260_right_collar/right_collar_rot2-.target.info
+%%DATADIR%%/rotations/260_right_collar/right_collar_rot2.target
+%%DATADIR%%/rotations/260_right_collar/right_collar_rot2.target.info
+%%DATADIR%%/rotations/260_right_collar/right_collar_rot3-.target
+%%DATADIR%%/rotations/260_right_collar/right_collar_rot3-.target.info
+%%DATADIR%%/rotations/260_right_collar/right_collar_rot3.target
+%%DATADIR%%/rotations/260_right_collar/right_collar_rot3.target.info
+%%DATADIR%%/rotations/260_right_collar/right_collar_rot3_00-.rot
+%%DATADIR%%/rotations/260_right_collar/right_collar_rot3_00-.rot.info
+%%DATADIR%%/rotations/280_left_collar/l_collar_rot1-.target
+%%DATADIR%%/rotations/280_left_collar/l_collar_rot1-.target.info
+%%DATADIR%%/rotations/280_left_collar/l_collar_rot1.target
+%%DATADIR%%/rotations/280_left_collar/l_collar_rot1.target.info
+%%DATADIR%%/rotations/280_left_collar/l_collar_rot2-.target
+%%DATADIR%%/rotations/280_left_collar/l_collar_rot2-.target.info
+%%DATADIR%%/rotations/280_left_collar/l_collar_rot2.target
+%%DATADIR%%/rotations/280_left_collar/l_collar_rot2.target.info
+%%DATADIR%%/rotations/280_left_collar/l_collar_rot3-.target
+%%DATADIR%%/rotations/280_left_collar/l_collar_rot3-.target.info
+%%DATADIR%%/rotations/280_left_collar/l_collar_rot3.target
+%%DATADIR%%/rotations/280_left_collar/l_collar_rot3.target.info
+%%DATADIR%%/rotations/280_left_collar/l_collar_rot3_00-.rot
+%%DATADIR%%/rotations/280_left_collar/l_collar_rot3_00-.rot.info
+%%DATADIR%%/rotations/300_head/head_rot1-.target
+%%DATADIR%%/rotations/300_head/head_rot1-.target.info
+%%DATADIR%%/rotations/300_head/head_rot1.target
+%%DATADIR%%/rotations/300_head/head_rot1.target.info
+%%DATADIR%%/rotations/300_head/head_rot1_00.rot
+%%DATADIR%%/rotations/300_head/head_rot1_00.rot.info
+%%DATADIR%%/rotations/300_head/head_rot2-.target
+%%DATADIR%%/rotations/300_head/head_rot2-.target.info
+%%DATADIR%%/rotations/300_head/head_rot2.target
+%%DATADIR%%/rotations/300_head/head_rot2.target.info
+%%DATADIR%%/rotations/300_head/head_rot3-.target
+%%DATADIR%%/rotations/300_head/head_rot3-.target.info
+%%DATADIR%%/rotations/300_head/head_rot3.target
+%%DATADIR%%/rotations/300_head/head_rot3.target.info
+%%DATADIR%%/rotations/320_neck/neck_rot1.target
+%%DATADIR%%/rotations/320_neck/neck_rot1.target.info
+%%DATADIR%%/rotations/340_lower_torso/torso3_rot2-.target
+%%DATADIR%%/rotations/340_lower_torso/torso3_rot2-.target.info
+%%DATADIR%%/rotations/340_lower_torso/torso3_rot2.target
+%%DATADIR%%/rotations/340_lower_torso/torso3_rot2.target.info
+%%DATADIR%%/rotations/340_lower_torso/torso3_rot3-.target
+%%DATADIR%%/rotations/340_lower_torso/torso3_rot3-.target.info
+%%DATADIR%%/rotations/340_lower_torso/torso3_rot3.target
+%%DATADIR%%/rotations/340_lower_torso/torso3_rot3.target.info
+%%DATADIR%%/rotations/360_upper_torso/torso2_rot1-.target
+%%DATADIR%%/rotations/360_upper_torso/torso2_rot1-.target.info
+%%DATADIR%%/rotations/360_upper_torso/torso2_rot1.target
+%%DATADIR%%/rotations/360_upper_torso/torso2_rot1.target.info
+%%DATADIR%%/rotations/360_upper_torso/torso2_rot1_00-.rot
+%%DATADIR%%/rotations/360_upper_torso/torso2_rot1_00-.rot.info
+%%DATADIR%%/rotations/360_upper_torso/torso2_rot1_00.rot
+%%DATADIR%%/rotations/360_upper_torso/torso2_rot1_00.rot.info
+%%DATADIR%%/rotations/360_upper_torso/torso2_rot2-.target
+%%DATADIR%%/rotations/360_upper_torso/torso2_rot2-.target.info
+%%DATADIR%%/rotations/360_upper_torso/torso2_rot2.target
+%%DATADIR%%/rotations/360_upper_torso/torso2_rot2.target.info
+%%DATADIR%%/rotations/360_upper_torso/torso2_rot3-.target
+%%DATADIR%%/rotations/360_upper_torso/torso2_rot3-.target.info
+%%DATADIR%%/rotations/360_upper_torso/torso2_rot3.target
+%%DATADIR%%/rotations/360_upper_torso/torso2_rot3.target.info
+%%DATADIR%%/targets/abdomen/abdomen_female.target
+%%DATADIR%%/targets/abdomen/abdomen_female2.target
+%%DATADIR%%/targets/abdomen/abdomen_lower_fat.target
+%%DATADIR%%/targets/abdomen/abdomen_muscolar_height.target
+%%DATADIR%%/targets/abdomen/abdomen_muscolar_width.target
%%DATADIR%%/targets/abdomen/abdomen_muscular.target
+%%DATADIR%%/targets/abdomen/abdomen_muscular_asimmetric.target
+%%DATADIR%%/targets/abdomen/abdomen_pregnancy.target
%%DATADIR%%/targets/abdomen/abdomen_scrawny.target
+%%DATADIR%%/targets/abdomen/abdomen_soft.target
+%%DATADIR%%/targets/abdomen/belly_button_big.target
+%%DATADIR%%/targets/abdomen/belly_button_down.target
+%%DATADIR%%/targets/abdomen/belly_button_half.target
+%%DATADIR%%/targets/abdomen/belly_button_height_max.target
+%%DATADIR%%/targets/abdomen/belly_button_height_min.target
+%%DATADIR%%/targets/abdomen/belly_button_left.target
+%%DATADIR%%/targets/abdomen/belly_button_outie.target
+%%DATADIR%%/targets/abdomen/belly_button_right.target
+%%DATADIR%%/targets/abdomen/belly_button_small.target
+%%DATADIR%%/targets/abdomen/belly_button_up.target
+%%DATADIR%%/targets/abdomen/belly_button_width_max.target
+%%DATADIR%%/targets/abdomen/belly_button_width_min.target
%%DATADIR%%/targets/abdomen/belly_out.target
%%DATADIR%%/targets/abdomen/no_belly_button.target
+%%DATADIR%%/targets/abdomen/serratus_muscular.target
%%DATADIR%%/targets/abdomen/waist_diameter_max.target
-%%DATADIR%%/targets/age/6_years_old.bs
-%%DATADIR%%/targets/age/70_years_old_WIP.bs
+%%DATADIR%%/targets/abdomen/waist_down.target
+%%DATADIR%%/targets/abdomen/waist_forward.target
+%%DATADIR%%/targets/abdomen/waist_left.target
+%%DATADIR%%/targets/abdomen/waist_right.target
+%%DATADIR%%/targets/abdomen/waist_small_depth.target
+%%DATADIR%%/targets/abdomen/waist_small_width.target
+%%DATADIR%%/targets/abdomen/waist_up.target
%%DATADIR%%/targets/brow_ridge/brow_receding.target
%%DATADIR%%/targets/brow_ridge/brow_ridge_center_down.target
+%%DATADIR%%/targets/brow_ridge/brow_ridge_center_protuding.target
+%%DATADIR%%/targets/brow_ridge/brow_ridge_center_receding.target
%%DATADIR%%/targets/brow_ridge/brow_ridge_center_up.target
+%%DATADIR%%/targets/brow_ridge/brow_ridge_mid_down.target
+%%DATADIR%%/targets/brow_ridge/brow_ridge_mid_protuding.target
+%%DATADIR%%/targets/brow_ridge/brow_ridge_mid_receding.target
+%%DATADIR%%/targets/brow_ridge/brow_ridge_mid_up.target
%%DATADIR%%/targets/brow_ridge/brow_ridge_outer_down.target
+%%DATADIR%%/targets/brow_ridge/brow_ridge_outer_protuding.target
+%%DATADIR%%/targets/brow_ridge/brow_ridge_outer_receding.target
%%DATADIR%%/targets/brow_ridge/brow_ridge_outer_up.target
+%%DATADIR%%/targets/brow_ridge/brow_ridge_point_protuding.target
+%%DATADIR%%/targets/brow_ridge/brow_ridge_point_receding.target
%%DATADIR%%/targets/brow_ridge/brow_ridge_protuding.target
+%%DATADIR%%/targets/brow_ridge/brow_ridge_sharp.target
%%DATADIR%%/targets/brow_ridge/brow_ridge_smooth.target
%%DATADIR%%/targets/brow_ridge/brow_ridge_up_sharp.target
%%DATADIR%%/targets/brow_ridge/brow_ridge_up_smooth.target
-%%DATADIR%%/targets/chin_jaw/chin_backward.target
-%%DATADIR%%/targets/chin_jaw/chin_jutting.target
-%%DATADIR%%/targets/chin_jaw/chin_recessed.target
-%%DATADIR%%/targets/chin_jaw/chin_relax.target
-%%DATADIR%%/targets/chin_jaw/chin_second.target
-%%DATADIR%%/targets/chin_jaw/chin_separated.target
-%%DATADIR%%/targets/chin_jaw/chin_shallow.target
-%%DATADIR%%/targets/chin_jaw/chin_small.target
-%%DATADIR%%/targets/chin_jaw/chin_wide.target
+%%DATADIR%%/targets/brow_ridge/brow_ridge_wide.target
%%DATADIR%%/targets/chin_jaw/jaw_angle.target
%%DATADIR%%/targets/chin_jaw/jaw_convex.target
-%%DATADIR%%/targets/chin_jaw/jaw_large.target
+%%DATADIR%%/targets/chin_jaw/jaw_down.target
+%%DATADIR%%/targets/chin_jaw/jaw_move_orizonthal_left.target
+%%DATADIR%%/targets/chin_jaw/jaw_move_orizonthal_right.target
+%%DATADIR%%/targets/chin_jaw/jaw_open.target
+%%DATADIR%%/targets/chin_jaw/jaw_out.target
%%DATADIR%%/targets/chin_jaw/jaw_round.target
%%DATADIR%%/targets/chin_jaw/jaw_round_vertical.target
+%%DATADIR%%/targets/chin_jaw/jaw_shut.target
%%DATADIR%%/targets/chin_jaw/jaw_square.target
%%DATADIR%%/targets/chin_jaw/jaw_thin.target
%%DATADIR%%/targets/chin_jaw/jaw_triangular.target
%%DATADIR%%/targets/chin_jaw/jaw_wide.target
-%%DATADIR%%/targets/cinematics/cinematic.target
+%%DATADIR%%/targets/chin_jaw/jaw_widht_max.target
+%%DATADIR%%/targets/chin_jaw2/chin_backward.target
+%%DATADIR%%/targets/chin_jaw2/chin_down.target
+%%DATADIR%%/targets/chin_jaw2/chin_forward.target
+%%DATADIR%%/targets/chin_jaw2/chin_height_max.target
+%%DATADIR%%/targets/chin_jaw2/chin_height_min.target
+%%DATADIR%%/targets/chin_jaw2/chin_jutting.target
+%%DATADIR%%/targets/chin_jaw2/chin_little.target
+%%DATADIR%%/targets/chin_jaw2/chin_recessed.target
+%%DATADIR%%/targets/chin_jaw2/chin_relax.target
+%%DATADIR%%/targets/chin_jaw2/chin_second.target
+%%DATADIR%%/targets/chin_jaw2/chin_separated.target
+%%DATADIR%%/targets/chin_jaw2/chin_separeted_forward.target
+%%DATADIR%%/targets/chin_jaw2/chin_shallow.target
+%%DATADIR%%/targets/chin_jaw2/chin_short.target
+%%DATADIR%%/targets/chin_jaw2/chin_up.target
+%%DATADIR%%/targets/chin_jaw2/chin_wide.target
+%%DATADIR%%/targets/finishing/120_kg.target
+%%DATADIR%%/targets/finishing/head_men_afro1.target
+%%DATADIR%%/targets/finishing/medium_female_head.target
+%%DATADIR%%/targets/finishing/old_posture.target
+%%DATADIR%%/targets/finishing/orco.target
+%%DATADIR%%/targets/finishing/super_muscular.target
+%%DATADIR%%/targets/finishing/top_model_body1.target
+%%DATADIR%%/targets/finishing/top_model_head1.target
%%DATADIR%%/targets/forehead/forehead_back.target
%%DATADIR%%/targets/forehead/forehead_forward.target
%%DATADIR%%/targets/forehead/forehead_narrow.target
+%%DATADIR%%/targets/forehead/forehead_narrow2.target
%%DATADIR%%/targets/forehead/forehead_short.target
%%DATADIR%%/targets/forehead/forehead_tall.target
%%DATADIR%%/targets/forehead/forehead_wide.target
+%%DATADIR%%/targets/forehead/forehead_wide2.target
%%DATADIR%%/targets/forehead/forehead_wrinkle.target
+%%DATADIR%%/targets/forehead/temple_narrow.target
%%DATADIR%%/targets/forehead/temple_wide.target
-%%DATADIR%%/targets/gender/medium_female.bs
+%%DATADIR%%/targets/head/head_baby.target
%%DATADIR%%/targets/head/head_ear_sellion_depth.target
+%%DATADIR%%/targets/head/head_eliptical.target
+%%DATADIR%%/targets/head/head_external_temples_in.target
%%DATADIR%%/targets/head/head_face_angle_max.target
%%DATADIR%%/targets/head/head_face_angle_min.target
+%%DATADIR%%/targets/head/head_female_base.target
%%DATADIR%%/targets/head/head_height_max.target
%%DATADIR%%/targets/head/head_height_min.target
%%DATADIR%%/targets/head/head_length_max.target
%%DATADIR%%/targets/head/head_length_min.target
%%DATADIR%%/targets/head/head_lower_height_max.target
%%DATADIR%%/targets/head/head_lower_height_min.target
+%%DATADIR%%/targets/head/head_none.target.corrupted
+%%DATADIR%%/targets/head/head_old.target
+%%DATADIR%%/targets/head/head_ovoidal.target
%%DATADIR%%/targets/head/head_ovoidal_inv.target
%%DATADIR%%/targets/head/head_pentagonoidal.target
%%DATADIR%%/targets/head/head_rectangular.target
@@ -996,54 +4312,159 @@ bin/makehuman
%%DATADIR%%/targets/head/head_skull_romboid.target
%%DATADIR%%/targets/head/head_skull_spheroid.target
%%DATADIR%%/targets/head/head_skull_spheroid2.target
+%%DATADIR%%/targets/head/head_smooth.target
%%DATADIR%%/targets/head/head_trapezioidal.target
%%DATADIR%%/targets/head/head_trapezioidal_inv.target
-%%DATADIR%%/targets/head/head_upper_height_max.target
-%%DATADIR%%/targets/head/head_upper_height_min.target
%%DATADIR%%/targets/head/head_width_max.target
%%DATADIR%%/targets/head/head_width_min.target
+%%DATADIR%%/targets/l_cheek/l_cheeck_line1.target
+%%DATADIR%%/targets/l_cheek/l_cheeck_line2.target
+%%DATADIR%%/targets/l_cheek/l_cheeck_line3.target
+%%DATADIR%%/targets/l_cheek/l_cheeck_line4.target
+%%DATADIR%%/targets/l_cheek/l_cheeck_line5.target
+%%DATADIR%%/targets/l_cheek/l_cheeck_line6.target
%%DATADIR%%/targets/l_cheek/l_cheek_flabby.target
%%DATADIR%%/targets/l_cheek/l_cheek_hollow.target
%%DATADIR%%/targets/l_cheek/l_cheek_round.target
%%DATADIR%%/targets/l_cheek/l_cheek_smooth.target
+%%DATADIR%%/targets/l_cheek/l_cheek_up.target
%%DATADIR%%/targets/l_cheek/l_cheek_wrinkle.target
%%DATADIR%%/targets/l_cheek/l_cheekbone_down.target
%%DATADIR%%/targets/l_cheek/l_cheekbone_protuding.target
+%%DATADIR%%/targets/l_cheek/l_cheekbone_protuding_up.target
%%DATADIR%%/targets/l_cheek/l_cheekbone_shallow.target
%%DATADIR%%/targets/l_cheek/l_cheekbone_thin.target
%%DATADIR%%/targets/l_cheek/l_cheekbone_up.target
%%DATADIR%%/targets/l_cheek/l_cheekbone_wide.target
+%%DATADIR%%/targets/l_ear/l_ear_antihelix_large.target
+%%DATADIR%%/targets/l_ear/l_ear_antihelix_none.target
+%%DATADIR%%/targets/l_ear/l_ear_antihelix_puff.target
+%%DATADIR%%/targets/l_ear/l_ear_antihelix_round.target
+%%DATADIR%%/targets/l_ear/l_ear_antihelix_short.target
+%%DATADIR%%/targets/l_ear/l_ear_antihelix_thin.target
+%%DATADIR%%/targets/l_ear/l_ear_antitragus_down.target
+%%DATADIR%%/targets/l_ear/l_ear_antitragus_none.target
+%%DATADIR%%/targets/l_ear/l_ear_antitragus_puff.target
+%%DATADIR%%/targets/l_ear/l_ear_antitragus_round.target
+%%DATADIR%%/targets/l_ear/l_ear_antitragus_up.target
+%%DATADIR%%/targets/l_ear/l_ear_baby.target
%%DATADIR%%/targets/l_ear/l_ear_backward.target
%%DATADIR%%/targets/l_ear/l_ear_big.target
+%%DATADIR%%/targets/l_ear/l_ear_crus_helicis_down.target
+%%DATADIR%%/targets/l_ear/l_ear_crus_helicis_large.target
+%%DATADIR%%/targets/l_ear/l_ear_crus_helicis_none.target
+%%DATADIR%%/targets/l_ear/l_ear_crus_helicis_up.target
+%%DATADIR%%/targets/l_ear/l_ear_cymba_conchae_big.target
+%%DATADIR%%/targets/l_ear/l_ear_cymba_conchae_small.target
+%%DATADIR%%/targets/l_ear/l_ear_extrabig.target
+%%DATADIR%%/targets/l_ear/l_ear_extrasmall.target
+%%DATADIR%%/targets/l_ear/l_ear_extraup.target
%%DATADIR%%/targets/l_ear/l_ear_flap.target
+%%DATADIR%%/targets/l_ear/l_ear_flappy_bottom.target
+%%DATADIR%%/targets/l_ear/l_ear_flappy_sideways.target
+%%DATADIR%%/targets/l_ear/l_ear_flappy_top.target
%%DATADIR%%/targets/l_ear/l_ear_forward.target
%%DATADIR%%/targets/l_ear/l_ear_half_wings.target
%%DATADIR%%/targets/l_ear/l_ear_height.target
+%%DATADIR%%/targets/l_ear/l_ear_inferior_crus_large.target
+%%DATADIR%%/targets/l_ear/l_ear_internal_flat.target
%%DATADIR%%/targets/l_ear/l_ear_lobe_big.target
%%DATADIR%%/targets/l_ear/l_ear_lobe_small.target
+%%DATADIR%%/targets/l_ear/l_ear_lobe_width_max.target
+%%DATADIR%%/targets/l_ear/l_ear_lobe_width_min.target
%%DATADIR%%/targets/l_ear/l_ear_low.target
+%%DATADIR%%/targets/l_ear/l_ear_lower_depth.target
+%%DATADIR%%/targets/l_ear/l_ear_lower_height.target
+%%DATADIR%%/targets/l_ear/l_ear_lower_small.target
+%%DATADIR%%/targets/l_ear/l_ear_outward.target
%%DATADIR%%/targets/l_ear/l_ear_quod.target
+%%DATADIR%%/targets/l_ear/l_ear_rot_backward.target
+%%DATADIR%%/targets/l_ear/l_ear_rot_forward.target
+%%DATADIR%%/targets/l_ear/l_ear_rot_outward.target
%%DATADIR%%/targets/l_ear/l_ear_small.target
+%%DATADIR%%/targets/l_ear/l_ear_thin.target
%%DATADIR%%/targets/l_ear/l_ear_wind.target
%%DATADIR%%/targets/l_ear/l_earlobe_height_max.target
%%DATADIR%%/targets/l_ear/l_earlobe_height_min.target
+%%DATADIR%%/targets/l_ear/l_earlobe_out.target
%%DATADIR%%/targets/l_ear/l_earlobe_width_max.target
+%%DATADIR%%/targets/l_ear2/l_ear_helix_in1.target
+%%DATADIR%%/targets/l_ear2/l_ear_helix_in10.target
+%%DATADIR%%/targets/l_ear2/l_ear_helix_in11.target
+%%DATADIR%%/targets/l_ear2/l_ear_helix_in2.target
+%%DATADIR%%/targets/l_ear2/l_ear_helix_in3.target
+%%DATADIR%%/targets/l_ear2/l_ear_helix_in4.target
+%%DATADIR%%/targets/l_ear2/l_ear_helix_in5.target
+%%DATADIR%%/targets/l_ear2/l_ear_helix_in6.target
+%%DATADIR%%/targets/l_ear2/l_ear_helix_in7.target
+%%DATADIR%%/targets/l_ear2/l_ear_helix_in8.target
+%%DATADIR%%/targets/l_ear2/l_ear_helix_in9.target
+%%DATADIR%%/targets/l_ear2/l_ear_helix_out1.target
+%%DATADIR%%/targets/l_ear2/l_ear_helix_out10.target
+%%DATADIR%%/targets/l_ear2/l_ear_helix_out11.target
+%%DATADIR%%/targets/l_ear2/l_ear_helix_out2.target
+%%DATADIR%%/targets/l_ear2/l_ear_helix_out3.target
+%%DATADIR%%/targets/l_ear2/l_ear_helix_out4.target
+%%DATADIR%%/targets/l_ear2/l_ear_helix_out5.target
+%%DATADIR%%/targets/l_ear2/l_ear_helix_out6.target
+%%DATADIR%%/targets/l_ear2/l_ear_helix_out7.target
+%%DATADIR%%/targets/l_ear2/l_ear_helix_out8.target
+%%DATADIR%%/targets/l_ear2/l_ear_helix_out9.target
+%%DATADIR%%/targets/l_ear2/l_ear_helix_puff.target
+%%DATADIR%%/targets/l_ear2/l_ear_helix_side.target
+%%DATADIR%%/targets/l_ear2/l_ear_helix_thin.target
+%%DATADIR%%/targets/l_ear2/l_ear_helix_upper.target
+%%DATADIR%%/targets/l_ear2/l_ear_incisura_interior_down.target
+%%DATADIR%%/targets/l_ear2/l_ear_incisura_interior_up.target
+%%DATADIR%%/targets/l_ear2/l_ear_incisura_intertragica_big.target
+%%DATADIR%%/targets/l_ear2/l_ear_incisura_intertragica_down.target
+%%DATADIR%%/targets/l_ear2/l_ear_incisura_intertragica_small.target
+%%DATADIR%%/targets/l_ear2/l_ear_incisura_intertragica_up.target
+%%DATADIR%%/targets/l_ear2/l_ear_inferior_crus_narrow.target
+%%DATADIR%%/targets/l_ear2/l_ear_inferior_crus_none.target
+%%DATADIR%%/targets/l_ear2/l_ear_scapha_lower_large.target
+%%DATADIR%%/targets/l_ear2/l_ear_scapha_none.target
+%%DATADIR%%/targets/l_ear2/l_ear_scapha_side_large.target
+%%DATADIR%%/targets/l_ear2/l_ear_scapha_upper_large.target
+%%DATADIR%%/targets/l_ear2/l_ear_superior_crus_large.target
+%%DATADIR%%/targets/l_ear2/l_ear_superior_crus_narrow.target
+%%DATADIR%%/targets/l_ear2/l_ear_superior_crus_none.target
+%%DATADIR%%/targets/l_ear2/l_ear_tragus_down.target
+%%DATADIR%%/targets/l_ear2/l_ear_tragus_in.target
+%%DATADIR%%/targets/l_ear2/l_ear_tragus_none.target
+%%DATADIR%%/targets/l_ear2/l_ear_tragus_puff.target
+%%DATADIR%%/targets/l_ear2/l_ear_tragus_small.target
+%%DATADIR%%/targets/l_ear2/l_ear_tragus_up.target
+%%DATADIR%%/targets/l_ear2/l_ear_triangular_fossa_big.target
+%%DATADIR%%/targets/l_ear2/l_ear_triangular_fossa_long.target
+%%DATADIR%%/targets/l_ear2/l_ear_triangular_fossa_none.target
+%%DATADIR%%/targets/l_ear2/l_ear_triangular_fossa_short.target
+%%DATADIR%%/targets/l_ear2/l_ear_triangular_fossa_small.target
+%%DATADIR%%/targets/l_ear2/l_ear_tuberculum_auricolae.target
+%%DATADIR%%/targets/l_ear2/l_ear_tuberculum_supertragicum.target
+%%DATADIR%%/targets/l_ear2/l_ear_upper_big.target
+%%DATADIR%%/targets/l_ear2/l_ear_upper_depth.target
+%%DATADIR%%/targets/l_ear2/l_ear_upper_height.target
+%%DATADIR%%/targets/l_ear2/l_ear_upper_out.target
%%DATADIR%%/targets/l_eye/l_eye_big.target
-%%DATADIR%%/targets/l_eye/l_eye_cat.target
+%%DATADIR%%/targets/l_eye/l_eye_box.target
+%%DATADIR%%/targets/l_eye/l_eye_bulb_back.target
+%%DATADIR%%/targets/l_eye/l_eye_bulb_down.target
+%%DATADIR%%/targets/l_eye/l_eye_bulb_extrasize.target
+%%DATADIR%%/targets/l_eye/l_eye_bulb_forward.target
+%%DATADIR%%/targets/l_eye/l_eye_bulb_left.target
+%%DATADIR%%/targets/l_eye/l_eye_bulb_minisize.target
+%%DATADIR%%/targets/l_eye/l_eye_bulb_right.target
+%%DATADIR%%/targets/l_eye/l_eye_bulb_up.target
%%DATADIR%%/targets/l_eye/l_eye_center_height_max.target
+%%DATADIR%%/targets/l_eye/l_eye_distance_max.target
%%DATADIR%%/targets/l_eye/l_eye_distance_min.target
%%DATADIR%%/targets/l_eye/l_eye_down.target
-%%DATADIR%%/targets/l_eye/l_eye_external_corner_down.target
-%%DATADIR%%/targets/l_eye/l_eye_external_corner_in.target
-%%DATADIR%%/targets/l_eye/l_eye_external_corner_out.target
-%%DATADIR%%/targets/l_eye/l_eye_external_corner_up.target
-%%DATADIR%%/targets/l_eye/l_eye_external_height_max.target
%%DATADIR%%/targets/l_eye/l_eye_fold.target
-%%DATADIR%%/targets/l_eye/l_eye_internal_corner_down.target
-%%DATADIR%%/targets/l_eye/l_eye_internal_corner_in.target
-%%DATADIR%%/targets/l_eye/l_eye_internal_corner_out.target
-%%DATADIR%%/targets/l_eye/l_eye_internal_corner_up.target
-%%DATADIR%%/targets/l_eye/l_eye_internal_height_max.target
+%%DATADIR%%/targets/l_eye/l_eye_fold_double.target
+%%DATADIR%%/targets/l_eye/l_eye_fold_lower.target
+%%DATADIR%%/targets/l_eye/l_eye_iris_min.target
+%%DATADIR%%/targets/l_eye/l_eye_no_bulb.target
%%DATADIR%%/targets/l_eye/l_eye_overhang.target
%%DATADIR%%/targets/l_eye/l_eye_small.target
%%DATADIR%%/targets/l_eye/l_eye_up.target
@@ -1051,57 +4472,303 @@ bin/makehuman
%%DATADIR%%/targets/l_eye/l_eyelashes_curve.target
%%DATADIR%%/targets/l_eye/l_eyelashes_long.target
%%DATADIR%%/targets/l_eye/l_eyelashes_none.target
+%%DATADIR%%/targets/l_eye/l_eyelids_out.target
%%DATADIR%%/targets/l_eye/l_eyelids_up.target
+%%DATADIR%%/targets/l_eye2/l_eye_bulb_rot_down.target
+%%DATADIR%%/targets/l_eye2/l_eye_bulb_rot_in.target
+%%DATADIR%%/targets/l_eye2/l_eye_bulb_rot_out.target
+%%DATADIR%%/targets/l_eye2/l_eye_bulb_rot_up.target
+%%DATADIR%%/targets/l_eye2/l_eye_close.target
+%%DATADIR%%/targets/l_eye2/l_eye_external_corner_down.target
+%%DATADIR%%/targets/l_eye2/l_eye_external_corner_in.target
+%%DATADIR%%/targets/l_eye2/l_eye_external_corner_out.target
+%%DATADIR%%/targets/l_eye2/l_eye_external_corner_up.target
+%%DATADIR%%/targets/l_eye2/l_eye_external_height_max.target
+%%DATADIR%%/targets/l_eye2/l_eye_external_rot_in.target
+%%DATADIR%%/targets/l_eye2/l_eye_external_rot_out.target
+%%DATADIR%%/targets/l_eye2/l_eye_inside.target
+%%DATADIR%%/targets/l_eye2/l_eye_internal_corner_down.target
+%%DATADIR%%/targets/l_eye2/l_eye_internal_corner_in.target
+%%DATADIR%%/targets/l_eye2/l_eye_internal_corner_out.target
+%%DATADIR%%/targets/l_eye2/l_eye_internal_corner_up.target
+%%DATADIR%%/targets/l_eye2/l_eye_internal_height_max.target
+%%DATADIR%%/targets/l_eye2/l_eye_lid_lower_up.target
+%%DATADIR%%/targets/l_eye2/l_eye_lid_upper_down.target
+%%DATADIR%%/targets/l_eye2/l_eye_lid_upper_half_down.target
+%%DATADIR%%/targets/l_eye2/l_eye_lid_upper_up.target
+%%DATADIR%%/targets/l_eye2/l_eye_overhang.target
+%%DATADIR%%/targets/l_eye2/l_eyebrow_inner_down.target
+%%DATADIR%%/targets/l_eye2/l_eyebrow_inner_up.target
+%%DATADIR%%/targets/l_eye2/l_eyebrow_outer_up.target
+%%DATADIR%%/targets/l_eye2/l_eyebrown_lower_down.target
+%%DATADIR%%/targets/l_eye2/l_eyelash_upper_down.target
%%DATADIR%%/targets/l_foot/l_ankle_big.target
+%%DATADIR%%/targets/l_foot/l_ankle_fat.target
%%DATADIR%%/targets/l_foot/l_ankle_little.target
+%%DATADIR%%/targets/l_foot/l_foot_bigtoe_valgus.target
%%DATADIR%%/targets/l_foot/l_foot_fingers_long.target
%%DATADIR%%/targets/l_foot/l_foot_height_max.target
%%DATADIR%%/targets/l_foot/l_foot_height_min.target
+%%DATADIR%%/targets/l_foot/l_foot_long.target
+%%DATADIR%%/targets/l_foot/l_foot_plantare_down.target
+%%DATADIR%%/targets/l_foot/l_foot_plantare_up.target
+%%DATADIR%%/targets/l_foot/l_foot_scrawny.target
%%DATADIR%%/targets/l_foot/l_foot_short.target
-%%DATADIR%%/targets/l_foot/l_foot_sizez_min.target
%%DATADIR%%/targets/l_foot/l_foot_width_max.target
%%DATADIR%%/targets/l_foot/l_foot_width_min.target
%%DATADIR%%/targets/l_foot/l_heel_none.target
-%%DATADIR%%/targets/l_hand/l_hand_sizex_min.target
-%%DATADIR%%/targets/l_hand/l_hand_sizey_min.target
-%%DATADIR%%/targets/l_hand/l_hand_sizez_min.target
-%%DATADIR%%/targets/l_hand/l_nail_sizex_min.target
+%%DATADIR%%/targets/l_forefinger/l_height_max_forefinger.target
+%%DATADIR%%/targets/l_forefinger/l_height_min_forefinger.target
+%%DATADIR%%/targets/l_forefinger/l_lenght_max_forefinger.target
+%%DATADIR%%/targets/l_forefinger/l_lenght_min_forefinger.target
+%%DATADIR%%/targets/l_forefinger/l_nail_cut_forefinger.target
+%%DATADIR%%/targets/l_forefinger/l_nail_cut_smooth_forefinger.target
+%%DATADIR%%/targets/l_forefinger/l_nail_lenght_max_forefinger.target
+%%DATADIR%%/targets/l_forefinger/l_nail_lenght_min_forefinger.target
+%%DATADIR%%/targets/l_forefinger/l_nail_lenght_out_max_forefinger.target
+%%DATADIR%%/targets/l_forefinger/l_nail_width_max_forefinger.target
+%%DATADIR%%/targets/l_forefinger/l_nail_width_min_forefinger.target
+%%DATADIR%%/targets/l_forefinger/l_width_max_forefinger.target
+%%DATADIR%%/targets/l_forefinger/l_width_min_forefinger.target
+%%DATADIR%%/targets/l_hand/l_hand_height_max.target
+%%DATADIR%%/targets/l_hand/l_hand_height_min.target
+%%DATADIR%%/targets/l_hand/l_hand_lenght_max.target
+%%DATADIR%%/targets/l_hand/l_hand_lenght_min.target
+%%DATADIR%%/targets/l_hand/l_hand_width_max.target
+%%DATADIR%%/targets/l_hand/l_hand_width_min.target
+%%DATADIR%%/targets/l_hand2/l_hand_scrawny.target
+%%DATADIR%%/targets/l_littlefinger/l_height_max_littlefinger.target
+%%DATADIR%%/targets/l_littlefinger/l_height_min_littlefinger.target
+%%DATADIR%%/targets/l_littlefinger/l_lenght_max_littlefinger.target
+%%DATADIR%%/targets/l_littlefinger/l_lenght_min_littlefinger.target
+%%DATADIR%%/targets/l_littlefinger/l_nail_cut_littlefinger.target
+%%DATADIR%%/targets/l_littlefinger/l_nail_cut_smooth_littlefinger.target
+%%DATADIR%%/targets/l_littlefinger/l_nail_lenght_max_littlefinger.target
+%%DATADIR%%/targets/l_littlefinger/l_nail_lenght_min_littlefinger.target
+%%DATADIR%%/targets/l_littlefinger/l_nail_lenght_out_max_littlefinger.target
+%%DATADIR%%/targets/l_littlefinger/l_nail_width_max_littlefinger.target
+%%DATADIR%%/targets/l_littlefinger/l_nail_width_min_littlefinger.target
+%%DATADIR%%/targets/l_littlefinger/l_width_max_littlefinger.target
+%%DATADIR%%/targets/l_littlefinger/l_width_min_littlefinger.target
%%DATADIR%%/targets/l_lower_arm/l_lower_arm_fat.target
+%%DATADIR%%/targets/l_lower_arm/l_lower_arm_height_min.target
%%DATADIR%%/targets/l_lower_arm/l_lower_arm_long.target
%%DATADIR%%/targets/l_lower_arm/l_lower_arm_muscular.target
%%DATADIR%%/targets/l_lower_arm/l_lower_arm_scrawny.target
%%DATADIR%%/targets/l_lower_arm/l_lower_arm_short.target
-%%DATADIR%%/targets/l_lower_arm/l_lower_arm_sizey_min.target
-%%DATADIR%%/targets/l_lower_arm/l_lower_arm_sizez_min.target
+%%DATADIR%%/targets/l_lower_arm/l_lower_arm_width_min.target
+%%DATADIR%%/targets/l_lower_arm/l_lower_arm_wrist_muscolar.target
+%%DATADIR%%/targets/l_lower_arm/l_wrist_big.target
+%%DATADIR%%/targets/l_lower_arm/l_wrist_small.target
%%DATADIR%%/targets/l_lower_leg/l_calf_muscular.target
+%%DATADIR%%/targets/l_lower_leg/l_leg_lower_convex.target
%%DATADIR%%/targets/l_lower_leg/l_leg_x_deform.target
+%%DATADIR%%/targets/l_lower_leg/l_lower_leg_depth_min.target
%%DATADIR%%/targets/l_lower_leg/l_lower_leg_fat.target
+%%DATADIR%%/targets/l_lower_leg/l_lower_leg_height_min.target
%%DATADIR%%/targets/l_lower_leg/l_lower_leg_long.target
+%%DATADIR%%/targets/l_lower_leg/l_lower_leg_natural_arc.target
%%DATADIR%%/targets/l_lower_leg/l_lower_leg_scrawny.target
-%%DATADIR%%/targets/l_lower_leg/l_lower_leg_sizex_min.target
-%%DATADIR%%/targets/l_lower_leg/l_lower_leg_sizey_min.target
-%%DATADIR%%/targets/l_lower_leg/l_lower_leg_sizez_min.target
+%%DATADIR%%/targets/l_lower_leg/l_lower_leg_width_min.target
+%%DATADIR%%/targets/l_middlefinger/l_height_max_middlefinger.target
+%%DATADIR%%/targets/l_middlefinger/l_height_min_middlefinger.target
+%%DATADIR%%/targets/l_middlefinger/l_lenght_max_middlefinger.target
+%%DATADIR%%/targets/l_middlefinger/l_lenght_min_middlefinger.target
+%%DATADIR%%/targets/l_middlefinger/l_nail_cut_middlefinger.target
+%%DATADIR%%/targets/l_middlefinger/l_nail_cut_smooth_middlefinger.target
+%%DATADIR%%/targets/l_middlefinger/l_nail_lenght_max_middlefinger.target
+%%DATADIR%%/targets/l_middlefinger/l_nail_lenght_min_middlefinger.target
+%%DATADIR%%/targets/l_middlefinger/l_nail_lenght_out_max_middlefinger.target
+%%DATADIR%%/targets/l_middlefinger/l_nail_width_max_middlefinger.target
+%%DATADIR%%/targets/l_middlefinger/l_nail_width_min_middlefinger.target
+%%DATADIR%%/targets/l_middlefinger/l_width_max_middlefinger.target
+%%DATADIR%%/targets/l_middlefinger/l_width_min_middlefinger.target
+%%DATADIR%%/targets/l_pollex/l_height_max_pollex.target
+%%DATADIR%%/targets/l_pollex/l_height_min_pollex.target
+%%DATADIR%%/targets/l_pollex/l_lenght_max_pollex.target
+%%DATADIR%%/targets/l_pollex/l_lenght_min_pollex.target
+%%DATADIR%%/targets/l_pollex/l_nail_cut_pollex.target
+%%DATADIR%%/targets/l_pollex/l_nail_cut_smooth_pollex.target
+%%DATADIR%%/targets/l_pollex/l_nail_lenght_max_pollex.target
+%%DATADIR%%/targets/l_pollex/l_nail_lenght_min_pollex.target
+%%DATADIR%%/targets/l_pollex/l_nail_lenght_out_max_pollex.target
+%%DATADIR%%/targets/l_pollex/l_nail_width_max_pollex.target
+%%DATADIR%%/targets/l_pollex/l_nail_width_min_pollex.target
+%%DATADIR%%/targets/l_pollex/l_width_max_pollex.target
+%%DATADIR%%/targets/l_pollex/l_width_min_pollex.target
+%%DATADIR%%/targets/l_ringfinger/l_height_max_ringfinger.target
+%%DATADIR%%/targets/l_ringfinger/l_height_min_ringfinger.target
+%%DATADIR%%/targets/l_ringfinger/l_lenght_max_ringfinger.target
+%%DATADIR%%/targets/l_ringfinger/l_lenght_min_ringfinger.target
+%%DATADIR%%/targets/l_ringfinger/l_nail_cut_ringfinger.target
+%%DATADIR%%/targets/l_ringfinger/l_nail_cut_smooth_ringfinger.target
+%%DATADIR%%/targets/l_ringfinger/l_nail_lenght_max_ringfinger.target
+%%DATADIR%%/targets/l_ringfinger/l_nail_lenght_min_ringfinger.target
+%%DATADIR%%/targets/l_ringfinger/l_nail_lenght_out_max_ringfinger.target
+%%DATADIR%%/targets/l_ringfinger/l_nail_width_max_ringfinger.target
+%%DATADIR%%/targets/l_ringfinger/l_nail_width_min_ringfinger.target
+%%DATADIR%%/targets/l_ringfinger/l_width_max_ringfinger.target
+%%DATADIR%%/targets/l_ringfinger/l_width_min_ringfinger.target
%%DATADIR%%/targets/l_shoulder/l_deltoid_muscular.target
%%DATADIR%%/targets/l_shoulder/l_deltoid_scrawny.target
-%%DATADIR%%/targets/l_shoulder/l_shoulder_out.target
-%%DATADIR%%/targets/l_shoulder/l_shoulder_sizex.target
+%%DATADIR%%/targets/l_shoulder/l_shoulder_depth_min.target
+%%DATADIR%%/targets/l_shoulder/l_shoulder_lenght_max.target
+%%DATADIR%%/targets/l_shoulder/l_shoulder_lenght_min.target
+%%DATADIR%%/targets/l_shoulder/l_shoulder_min.target
+%%DATADIR%%/targets/l_shoulder/l_shoulder_move_backward.target
+%%DATADIR%%/targets/l_shoulder/l_shoulder_move_down.target
+%%DATADIR%%/targets/l_shoulder/l_shoulder_move_down2.target
+%%DATADIR%%/targets/l_shoulder/l_shoulder_move_forward.target
+%%DATADIR%%/targets/l_shoulder/l_shoulder_move_sideways_in.target
+%%DATADIR%%/targets/l_shoulder/l_shoulder_move_sideways_out.target
+%%DATADIR%%/targets/l_shoulder/l_shoulder_move_up.target
+%%DATADIR%%/targets/l_shoulder/l_shoulder_move_up2.target
+%%DATADIR%%/targets/l_shoulder/l_shoulder_scapula_move_backward.target
+%%DATADIR%%/targets/l_shoulder/l_shoulder_width.target
+%%DATADIR%%/targets/l_shoulder/l_trapezious_down.target
+%%DATADIR%%/targets/l_upper_arm/l_armpit_width.target
%%DATADIR%%/targets/l_upper_arm/l_biceps_muscular.target
%%DATADIR%%/targets/l_upper_arm/l_triceps.target
+%%DATADIR%%/targets/l_upper_arm/l_upper_arm_elbow_big.target
+%%DATADIR%%/targets/l_upper_arm/l_upper_arm_elbow_small.target
%%DATADIR%%/targets/l_upper_arm/l_upper_arm_fat.target
%%DATADIR%%/targets/l_upper_arm/l_upper_arm_flabby.target
+%%DATADIR%%/targets/l_upper_arm/l_upper_arm_height_min.target
%%DATADIR%%/targets/l_upper_arm/l_upper_arm_long.target
%%DATADIR%%/targets/l_upper_arm/l_upper_arm_scrawny.target
%%DATADIR%%/targets/l_upper_arm/l_upper_arm_short.target
-%%DATADIR%%/targets/l_upper_arm/l_upper_arm_sizey_min.target
-%%DATADIR%%/targets/l_upper_arm/l_upper_arm_sizez_min.target
+%%DATADIR%%/targets/l_upper_arm/l_upper_arm_short.target.corrupted
+%%DATADIR%%/targets/l_upper_arm/l_upper_arm_width_min.target
%%DATADIR%%/targets/l_upper_leg/l_femoris_muscular.target
+%%DATADIR%%/targets/l_upper_leg/l_knee_big.target
+%%DATADIR%%/targets/l_upper_leg/l_knee_external_min.target
+%%DATADIR%%/targets/l_upper_leg/l_knee_small.target
+%%DATADIR%%/targets/l_upper_leg/l_knee_smooth.target
+%%DATADIR%%/targets/l_upper_leg/l_leg_upper_convex.target
%%DATADIR%%/targets/l_upper_leg/l_quadricipes_muscular.target
+%%DATADIR%%/targets/l_upper_leg/l_thigh_external_max.target
+%%DATADIR%%/targets/l_upper_leg/l_thigh_internal_max.target
+%%DATADIR%%/targets/l_upper_leg/l_thigh_smooth.target
+%%DATADIR%%/targets/l_upper_leg/l_upper_back_leg_fat.target
+%%DATADIR%%/targets/l_upper_leg/l_upper_leg_cellulitis.target
%%DATADIR%%/targets/l_upper_leg/l_upper_leg_fat.target
+%%DATADIR%%/targets/l_upper_leg/l_upper_leg_height_min.target
+%%DATADIR%%/targets/l_upper_leg/l_upper_leg_lenght_min.target
%%DATADIR%%/targets/l_upper_leg/l_upper_leg_long.target
%%DATADIR%%/targets/l_upper_leg/l_upper_leg_scrawny.target
-%%DATADIR%%/targets/l_upper_leg/l_upper_leg_sizex_min.target
-%%DATADIR%%/targets/l_upper_leg/l_upper_leg_sizey_min.target
-%%DATADIR%%/targets/l_upper_leg/l_upper_leg_sizez_min.target
+%%DATADIR%%/targets/l_upper_leg/l_upper_leg_width_min.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_left_canine_in.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_left_canine_left_rotated.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_left_canine_long.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_left_canine_none.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_left_canine_out.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_left_canine_right_rotated.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_left_central_incisor_in.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_left_central_incisor_left_rotated.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_left_central_incisor_long.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_left_central_incisor_none.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_left_central_incisor_out.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_left_central_incisor_right_rotated.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_left_lateral_incisor_in.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_left_lateral_incisor_left_rotated.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_left_lateral_incisor_long.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_left_lateral_incisor_none.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_left_lateral_incisor_out.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_left_lateral_incisor_right_rotated.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_right_canine_depth_min.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_right_canine_in.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_right_canine_left_rotated.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_right_canine_long.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_right_canine_none.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_right_canine_out.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_right_canine_right_rotated.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_right_canine_width_min.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_right_central_incisor_depth_min.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_right_central_incisor_in.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_right_central_incisor_left_rotated.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_right_central_incisor_long.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_right_central_incisor_none.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_right_central_incisor_out.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_right_central_incisor_right_rotated.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_right_central_incisor_width_min.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_right_lateral_incisor_depth_min.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_right_lateral_incisor_in.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_right_lateral_incisor_left_rotated.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_right_lateral_incisor_long.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_right_lateral_incisor_none.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_right_lateral_incisor_out.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_right_lateral_incisor_right_rotated.target
+%%DATADIR%%/targets/lower_teeth_center/teeth_right_lateral_incisor_width_min.target
+%%DATADIR%%/targets/lower_teeth_left/teeth_left_first_molar_in.target
+%%DATADIR%%/targets/lower_teeth_left/teeth_left_first_molar_left_rotated.target
+%%DATADIR%%/targets/lower_teeth_left/teeth_left_first_molar_long.target
+%%DATADIR%%/targets/lower_teeth_left/teeth_left_first_molar_none.target
+%%DATADIR%%/targets/lower_teeth_left/teeth_left_first_molar_out.target
+%%DATADIR%%/targets/lower_teeth_left/teeth_left_first_molar_right_rotated.target
+%%DATADIR%%/targets/lower_teeth_left/teeth_left_first_premolar_in.target
+%%DATADIR%%/targets/lower_teeth_left/teeth_left_first_premolar_left_rotated.target
+%%DATADIR%%/targets/lower_teeth_left/teeth_left_first_premolar_long.target
+%%DATADIR%%/targets/lower_teeth_left/teeth_left_first_premolar_none.target
+%%DATADIR%%/targets/lower_teeth_left/teeth_left_first_premolar_out.target
+%%DATADIR%%/targets/lower_teeth_left/teeth_left_first_premolar_right_rotated.target
+%%DATADIR%%/targets/lower_teeth_left/teeth_left_second_molar_in.target
+%%DATADIR%%/targets/lower_teeth_left/teeth_left_second_molar_left_rotated.target
+%%DATADIR%%/targets/lower_teeth_left/teeth_left_second_molar_long.target
+%%DATADIR%%/targets/lower_teeth_left/teeth_left_second_molar_none.target
+%%DATADIR%%/targets/lower_teeth_left/teeth_left_second_molar_out.target
+%%DATADIR%%/targets/lower_teeth_left/teeth_left_second_molar_right_rotated.target
+%%DATADIR%%/targets/lower_teeth_left/teeth_left_second_premolar_in.target
+%%DATADIR%%/targets/lower_teeth_left/teeth_left_second_premolar_left_rotated.target
+%%DATADIR%%/targets/lower_teeth_left/teeth_left_second_premolar_long.target
+%%DATADIR%%/targets/lower_teeth_left/teeth_left_second_premolar_none.target
+%%DATADIR%%/targets/lower_teeth_left/teeth_left_second_premolar_out.target
+%%DATADIR%%/targets/lower_teeth_left/teeth_left_second_premolar_right_rotated.target
+%%DATADIR%%/targets/lower_teeth_left/teeth_left_third_molar_in.target
+%%DATADIR%%/targets/lower_teeth_left/teeth_left_third_molar_left_rotated.target
+%%DATADIR%%/targets/lower_teeth_left/teeth_left_third_molar_long.target
+%%DATADIR%%/targets/lower_teeth_left/teeth_left_third_molar_none.target
+%%DATADIR%%/targets/lower_teeth_left/teeth_left_third_molar_out.target
+%%DATADIR%%/targets/lower_teeth_left/teeth_left_third_molar_right_rotated.target
+%%DATADIR%%/targets/lower_teeth_right/teeth_right_first_molar_depth_min.target
+%%DATADIR%%/targets/lower_teeth_right/teeth_right_first_molar_in.target
+%%DATADIR%%/targets/lower_teeth_right/teeth_right_first_molar_left_rotated.target
+%%DATADIR%%/targets/lower_teeth_right/teeth_right_first_molar_long.target
+%%DATADIR%%/targets/lower_teeth_right/teeth_right_first_molar_none.target
+%%DATADIR%%/targets/lower_teeth_right/teeth_right_first_molar_out.target
+%%DATADIR%%/targets/lower_teeth_right/teeth_right_first_molar_right_rotated.target
+%%DATADIR%%/targets/lower_teeth_right/teeth_right_first_molar_width_min.target
+%%DATADIR%%/targets/lower_teeth_right/teeth_right_first_premolar_depth_min.target
+%%DATADIR%%/targets/lower_teeth_right/teeth_right_first_premolar_in.target
+%%DATADIR%%/targets/lower_teeth_right/teeth_right_first_premolar_left_rotated.target
+%%DATADIR%%/targets/lower_teeth_right/teeth_right_first_premolar_long.target
+%%DATADIR%%/targets/lower_teeth_right/teeth_right_first_premolar_none.target
+%%DATADIR%%/targets/lower_teeth_right/teeth_right_first_premolar_out.target
+%%DATADIR%%/targets/lower_teeth_right/teeth_right_first_premolar_right_rotated.target
+%%DATADIR%%/targets/lower_teeth_right/teeth_right_first_premolar_width_min.target
+%%DATADIR%%/targets/lower_teeth_right/teeth_right_second_molar_depth_min.target
+%%DATADIR%%/targets/lower_teeth_right/teeth_right_second_molar_in.target
+%%DATADIR%%/targets/lower_teeth_right/teeth_right_second_molar_left_rotated.target
+%%DATADIR%%/targets/lower_teeth_right/teeth_right_second_molar_long.target
+%%DATADIR%%/targets/lower_teeth_right/teeth_right_second_molar_none.target
+%%DATADIR%%/targets/lower_teeth_right/teeth_right_second_molar_out.target
+%%DATADIR%%/targets/lower_teeth_right/teeth_right_second_molar_right_rotated.target
+%%DATADIR%%/targets/lower_teeth_right/teeth_right_second_molar_width_min.target
+%%DATADIR%%/targets/lower_teeth_right/teeth_right_second_premolar_depth_min.target
+%%DATADIR%%/targets/lower_teeth_right/teeth_right_second_premolar_in.target
+%%DATADIR%%/targets/lower_teeth_right/teeth_right_second_premolar_left_rotated.target
+%%DATADIR%%/targets/lower_teeth_right/teeth_right_second_premolar_long.target
+%%DATADIR%%/targets/lower_teeth_right/teeth_right_second_premolar_none.target
+%%DATADIR%%/targets/lower_teeth_right/teeth_right_second_premolar_out.target
+%%DATADIR%%/targets/lower_teeth_right/teeth_right_second_premolar_right_rotated.target
+%%DATADIR%%/targets/lower_teeth_right/teeth_right_second_premolar_width_min.target
+%%DATADIR%%/targets/lower_teeth_right/teeth_right_third_molar_depth_min.target
+%%DATADIR%%/targets/lower_teeth_right/teeth_right_third_molar_in.target
+%%DATADIR%%/targets/lower_teeth_right/teeth_right_third_molar_left_rotated.target
+%%DATADIR%%/targets/lower_teeth_right/teeth_right_third_molar_long.target
+%%DATADIR%%/targets/lower_teeth_right/teeth_right_third_molar_none.target
+%%DATADIR%%/targets/lower_teeth_right/teeth_right_third_molar_out.target
+%%DATADIR%%/targets/lower_teeth_right/teeth_right_third_molar_right_rotated.target
+%%DATADIR%%/targets/lower_teeth_right/teeth_right_third_molar_width_min.target
%%DATADIR%%/targets/mees_builders/CHEEK_RAISER_LEFT.target
%%DATADIR%%/targets/mees_builders/CHEEK_RAISER_RIGHT.target
%%DATADIR%%/targets/mees_builders/CHIN_RAISER.target
@@ -1136,6 +4803,7 @@ bin/makehuman
%%DATADIR%%/targets/mees_builders/LIP_STRETCHER_RIGHT.target
%%DATADIR%%/targets/mees_builders/LOWER_LIP_DEPRESSOR.target
%%DATADIR%%/targets/mees_builders/NASOLABIAL_FURROW_DEEPENER.target
+%%DATADIR%%/targets/mees_builders/NOSE_WRINKLER.TARGET
%%DATADIR%%/targets/mees_builders/NOSTRIL_COMPRESSOR.target
%%DATADIR%%/targets/mees_builders/NOSTRIL_DILATOR.target
%%DATADIR%%/targets/mees_builders/UPPER_LIP_LEFT_RAISER.target
@@ -1153,6 +4821,7 @@ bin/makehuman
%%DATADIR%%/targets/mees_emotions/EXAGGERATE_JOY.target
%%DATADIR%%/targets/mees_emotions/EXAGGERATE_SADNESS.target
%%DATADIR%%/targets/mees_emotions/EXAGGERATE_SUPRISE.target
+%%DATADIR%%/targets/mees_fantasies/l_side_out.target
%%DATADIR%%/targets/mees_gesture/GESTURE_CHEEK_BLOW.target
%%DATADIR%%/targets/mees_gesture/GESTURE_EYE_WINK_LEFT.target
%%DATADIR%%/targets/mees_gesture/GESTURE_EYE_WINK_RIGHT.target
@@ -1188,156 +4857,412 @@ bin/makehuman
%%DATADIR%%/targets/mees_movements/TONGUE_OUT.target
%%DATADIR%%/targets/mees_movements/TONGUE_RIGHT.target
%%DATADIR%%/targets/mees_movements/TONGUE_UP.target
+%%DATADIR%%/targets/mees_movements/left_pupil_size.target
+%%DATADIR%%/targets/mouth/lower_lips_on_in.target
+%%DATADIR%%/targets/mouth/lower_lips_out.target
%%DATADIR%%/targets/mouth/mouth_M_shape.target
%%DATADIR%%/targets/mouth/mouth_angle_down.target
+%%DATADIR%%/targets/mouth/mouth_angle_up.target
%%DATADIR%%/targets/mouth/mouth_chin_distance_long.target
%%DATADIR%%/targets/mouth/mouth_chin_distance_short.target
+%%DATADIR%%/targets/mouth/mouth_close.target
+%%DATADIR%%/targets/mouth/mouth_depthy.target.corrupted
+%%DATADIR%%/targets/mouth/mouth_height_max.target
+%%DATADIR%%/targets/mouth/mouth_height_min.target
+%%DATADIR%%/targets/mouth/mouth_lip_lower_depress.target
+%%DATADIR%%/targets/mouth/mouth_lip_upper_raise.target
%%DATADIR%%/targets/mouth/mouth_lips_deflated.target
+%%DATADIR%%/targets/mouth/mouth_lips_funnel.target
%%DATADIR%%/targets/mouth/mouth_lips_inflated.target
-%%DATADIR%%/targets/mouth/mouth_lower_lips_deflated.target
-%%DATADIR%%/targets/mouth/mouth_lower_lips_inflated.target
-%%DATADIR%%/targets/mouth/mouth_lower_lips_thin.target
-%%DATADIR%%/targets/mouth/mouth_lower_lips_wide.target
-%%DATADIR%%/targets/mouth/mouth_overbite.target
+%%DATADIR%%/targets/mouth/mouth_lips_pressor.target
+%%DATADIR%%/targets/mouth/mouth_lips_shut.target
+%%DATADIR%%/targets/mouth/mouth_lips_suck.target
+%%DATADIR%%/targets/mouth/mouth_lower_lip_bite.target
+%%DATADIR%%/targets/mouth/mouth_nasolabial_center_in.target
+%%DATADIR%%/targets/mouth/mouth_nasolabial_center_out.target
+%%DATADIR%%/targets/mouth/mouth_nasolabial_mid_in.target
+%%DATADIR%%/targets/mouth/mouth_nasolabial_mid_out.target
+%%DATADIR%%/targets/mouth/mouth_nasolabial_side_in.target
+%%DATADIR%%/targets/mouth/mouth_nasolabial_side_out.target
+%%DATADIR%%/targets/mouth/mouth_nasolabial_up.target
%%DATADIR%%/targets/mouth/mouth_thin.target
-%%DATADIR%%/targets/mouth/mouth_underbite.target
-%%DATADIR%%/targets/mouth/mouth_upper_lips_convex.target
-%%DATADIR%%/targets/mouth/mouth_upper_lips_deflated.target
-%%DATADIR%%/targets/mouth/mouth_upper_lips_inflated.target
-%%DATADIR%%/targets/mouth/mouth_upper_lips_thin.target
-%%DATADIR%%/targets/mouth/mouth_upper_lips_wide.target
+%%DATADIR%%/targets/mouth/mouth_upper_lip_bite.target
%%DATADIR%%/targets/mouth/mouth_w_shape.target
%%DATADIR%%/targets/mouth/mouth_wide.target
-%%DATADIR%%/targets/mouth/teeth_center_none.target
-%%DATADIR%%/targets/mouth/teeth_center_out.target
-%%DATADIR%%/targets/mouth/teeth_movex.target
-%%DATADIR%%/targets/mouth/teeth_movey.target
-%%DATADIR%%/targets/mouth/teeth_movez.target
-%%DATADIR%%/targets/mouth/teeth_rot.target
-%%DATADIR%%/targets/mouth/teeth_sizex_min.target
-%%DATADIR%%/targets/mouth/teeth_sizey_min.target
-%%DATADIR%%/targets/mouth/teeth_sizez_min.target
-%%DATADIR%%/targets/mouth/teeth_up_movex.target
-%%DATADIR%%/targets/mouth/teeth_up_movey.target
-%%DATADIR%%/targets/mouth/teeth_up_movez.target
-%%DATADIR%%/targets/mouth/teeth_vampire.target
-%%DATADIR%%/targets/muscle/super_muscular.bs
-%%DATADIR%%/targets/nail_fantasy/nail_bifid.target
-%%DATADIR%%/targets/nail_fantasy/nail_large.target
-%%DATADIR%%/targets/nail_fantasy/nail_sharp.target
+%%DATADIR%%/targets/mouth/mouth_width_min.target
+%%DATADIR%%/targets/mouth/upper_lips_in.target
+%%DATADIR%%/targets/mouth/upper_lips_out.target
+%%DATADIR%%/targets/mouth2/mouth_lower _lips_point_in.target
+%%DATADIR%%/targets/mouth2/mouth_lower_lips_base_down.target
+%%DATADIR%%/targets/mouth2/mouth_lower_lips_base_up.target
+%%DATADIR%%/targets/mouth2/mouth_lower_lips_deflated.target
+%%DATADIR%%/targets/mouth2/mouth_lower_lips_inflated.target
+%%DATADIR%%/targets/mouth2/mouth_lower_lips_left_down.target
+%%DATADIR%%/targets/mouth2/mouth_lower_lips_left_up.target
+%%DATADIR%%/targets/mouth2/mouth_lower_lips_mid_up.target
+%%DATADIR%%/targets/mouth2/mouth_lower_lips_point_down.target
+%%DATADIR%%/targets/mouth2/mouth_lower_lips_point_out.target
+%%DATADIR%%/targets/mouth2/mouth_lower_lips_point_up.target
+%%DATADIR%%/targets/mouth2/mouth_lower_lips_right_down.target
+%%DATADIR%%/targets/mouth2/mouth_lower_lips_right_up.target
+%%DATADIR%%/targets/mouth2/mouth_lower_lips_thin.target
+%%DATADIR%%/targets/mouth2/mouth_lower_lips_wide.target
+%%DATADIR%%/targets/mouth2/mouth_side_left.target
+%%DATADIR%%/targets/mouth2/mouth_side_right.target
+%%DATADIR%%/targets/mouth2/r_lips_down.target
+%%DATADIR%%/targets/mouth2/r_lower_lips_up.target
+%%DATADIR%%/targets/mouth3/mouth_upper_lips_base_down.target
+%%DATADIR%%/targets/mouth3/mouth_upper_lips_base_up.target
+%%DATADIR%%/targets/mouth3/mouth_upper_lips_center_down.target
+%%DATADIR%%/targets/mouth3/mouth_upper_lips_concave.target
+%%DATADIR%%/targets/mouth3/mouth_upper_lips_convex.target
+%%DATADIR%%/targets/mouth3/mouth_upper_lips_deflated.target
+%%DATADIR%%/targets/mouth3/mouth_upper_lips_inflated.target
+%%DATADIR%%/targets/mouth3/mouth_upper_lips_left_down.target
+%%DATADIR%%/targets/mouth3/mouth_upper_lips_left_up.target
+%%DATADIR%%/targets/mouth3/mouth_upper_lips_mid_down.target
+%%DATADIR%%/targets/mouth3/mouth_upper_lips_point.target
+%%DATADIR%%/targets/mouth3/mouth_upper_lips_point_closeX.target
+%%DATADIR%%/targets/mouth3/mouth_upper_lips_point_down.target
+%%DATADIR%%/targets/mouth3/mouth_upper_lips_point_in.target
+%%DATADIR%%/targets/mouth3/mouth_upper_lips_point_inflatted.target
+%%DATADIR%%/targets/mouth3/mouth_upper_lips_point_largeX.target
+%%DATADIR%%/targets/mouth3/mouth_upper_lips_point_out.target
+%%DATADIR%%/targets/mouth3/mouth_upper_lips_right_down.target
+%%DATADIR%%/targets/mouth3/mouth_upper_lips_right_up.target
+%%DATADIR%%/targets/mouth3/mouth_upper_lips_thin.target
+%%DATADIR%%/targets/mouth3/mouth_upper_lips_wide.target
+%%DATADIR%%/targets/mouth3/r_upper_lips_down.target
+%%DATADIR%%/targets/mouth3/r_upper_lips_up.target
+%%DATADIR%%/targets/neck/mid_neck_narrow.target
+%%DATADIR%%/targets/neck/neck_apple_none.target
+%%DATADIR%%/targets/neck/neck_apple_prominent.target
+%%DATADIR%%/targets/neck/neck_backward.target
+%%DATADIR%%/targets/neck/neck_base_min.target
%%DATADIR%%/targets/neck/neck_fat.target
+%%DATADIR%%/targets/neck/neck_long.target
+%%DATADIR%%/targets/neck/neck_muscular.target
%%DATADIR%%/targets/neck/neck_old.target
+%%DATADIR%%/targets/neck/neck_out.target
%%DATADIR%%/targets/neck/neck_scrawny.target
-%%DATADIR%%/targets/neck/neck_sizex_min.target
-%%DATADIR%%/targets/neck/neck_sizey_min.target
+%%DATADIR%%/targets/neck/neck_short.target
%%DATADIR%%/targets/neck/neck_smooth.target
-%%DATADIR%%/targets/nose/nose_anime1.target
+%%DATADIR%%/targets/neck/neck_width_min.target
+%%DATADIR%%/targets/nose/nose_base_forward.target
%%DATADIR%%/targets/nose/nose_base_narrow.target
%%DATADIR%%/targets/nose/nose_base_smooth.target
%%DATADIR%%/targets/nose/nose_base_wide.target
%%DATADIR%%/targets/nose/nose_bridge_down.target
%%DATADIR%%/targets/nose/nose_bridge_in.target
+%%DATADIR%%/targets/nose/nose_bridge_left.target
%%DATADIR%%/targets/nose/nose_bridge_narrow.target
%%DATADIR%%/targets/nose/nose_bridge_out.target
+%%DATADIR%%/targets/nose/nose_bridge_right.target
+%%DATADIR%%/targets/nose/nose_bridge_smooth.target
%%DATADIR%%/targets/nose/nose_bridge_up.target
%%DATADIR%%/targets/nose/nose_bridge_wide.target
%%DATADIR%%/targets/nose/nose_flat.target
%%DATADIR%%/targets/nose/nose_height_max.target
%%DATADIR%%/targets/nose/nose_height_min.target
%%DATADIR%%/targets/nose/nose_long.target
-%%DATADIR%%/targets/nose/nose_mars_no_nostrill.target
%%DATADIR%%/targets/nose/nose_none.target
-%%DATADIR%%/targets/nose/nose_none_no_nostril.target
%%DATADIR%%/targets/nose/nose_sellion_deep.target
%%DATADIR%%/targets/nose/nose_sellion_down.target
%%DATADIR%%/targets/nose/nose_sellion_narrow.target
%%DATADIR%%/targets/nose/nose_sellion_shallow.target
+%%DATADIR%%/targets/nose/nose_sellion_smooth.target
%%DATADIR%%/targets/nose/nose_sellion_up.target
%%DATADIR%%/targets/nose/nose_sellion_wide.target
%%DATADIR%%/targets/nose/nose_smooth.target
%%DATADIR%%/targets/nose/nose_thin.target
%%DATADIR%%/targets/nose/nose_tip_bulbous.target
%%DATADIR%%/targets/nose/nose_tip_down.target
+%%DATADIR%%/targets/nose/nose_tip_forward.target
+%%DATADIR%%/targets/nose/nose_tip_in.target
+%%DATADIR%%/targets/nose/nose_tip_left.target
+%%DATADIR%%/targets/nose/nose_tip_out.target
+%%DATADIR%%/targets/nose/nose_tip_right.target
+%%DATADIR%%/targets/nose/nose_tip_smooth.target
%%DATADIR%%/targets/nose/nose_wide.target
+%%DATADIR%%/targets/nose/nostril_long.target
+%%DATADIR%%/targets/nose/nostril_round.target
+%%DATADIR%%/targets/nose/nostrils_down.target
%%DATADIR%%/targets/nose/nostrils_holes_small.target
%%DATADIR%%/targets/nose/nostrils_large.target
+%%DATADIR%%/targets/nose/nostrils_left_cut1.target
+%%DATADIR%%/targets/nose/nostrils_left_cut2.target
+%%DATADIR%%/targets/nose/nostrils_long.target
+%%DATADIR%%/targets/nose/nostrils_narrow.target
+%%DATADIR%%/targets/nose/nostrils_right_cut1.target
+%%DATADIR%%/targets/nose/nostrils_right_cut2.target
+%%DATADIR%%/targets/nose/nostrils_round.target
%%DATADIR%%/targets/nose/nostrils_small.target
%%DATADIR%%/targets/nose/nostrils_tilt_up.target
+%%DATADIR%%/targets/nose/nostrils_up.target
%%DATADIR%%/targets/nose/tip_narrow.target
%%DATADIR%%/targets/nose/tip_up.target
%%DATADIR%%/targets/nose/tip_wide.target
-%%DATADIR%%/targets/ns_eyes/l_eye_none_flatten.target
-%%DATADIR%%/targets/ns_eyes/l_eye_none_flatten2.target
-%%DATADIR%%/targets/ns_eyes/l_eye_none_flatten3.target
-%%DATADIR%%/targets/ns_eyes/l_eye_none_in.target
-%%DATADIR%%/targets/ns_eyes/l_eye_none_out.target
-%%DATADIR%%/targets/ns_eyes/r_eye_none_flatten.target
-%%DATADIR%%/targets/ns_eyes/r_eye_none_flatten2.target
-%%DATADIR%%/targets/ns_eyes/r_eye_none_flatten3.target
-%%DATADIR%%/targets/ns_eyes/r_eye_none_in.target
-%%DATADIR%%/targets/ns_eyes/r_eye_none_out.target
-%%DATADIR%%/targets/ns_head/head_cube.target
-%%DATADIR%%/targets/ns_head/head_geom_bipyramid.target
-%%DATADIR%%/targets/ns_head/head_geom_bisphere.target
-%%DATADIR%%/targets/ns_head/head_geom_cone.target
-%%DATADIR%%/targets/ns_head/head_geom_flat.target
-%%DATADIR%%/targets/ns_head/head_geom_fractal.target
-%%DATADIR%%/targets/ns_head/head_geom_pharaon.target
-%%DATADIR%%/targets/ns_head/head_geom_pyramid.target
-%%DATADIR%%/targets/ns_head/head_geom_sphere.target
-%%DATADIR%%/targets/ns_head/head_geom_tube.target
-%%DATADIR%%/targets/ns_head/head_geom_twist.target
-%%DATADIR%%/targets/ns_head/head_sphere.target
-%%DATADIR%%/targets/ns_head/ogiva_head.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_bamby.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_bat.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_bell.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_bi_points.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_blend.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_bongo.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_bulb1.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_bulb2.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_bulb3.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_cat.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_cat2.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_cow.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_cow2.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_cow3.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_cow4.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_cow5.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_cut.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_cut2.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_cut3.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_demon.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_dog.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_dog2.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_dog3.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_donkey.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_donut.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_donut2.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_dumbo.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_fawn.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_flower.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_flower2.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_flower3.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_goat.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_gremlins.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_in_out.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_leaf.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_leaf2.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_lobe_point_out.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_long_round.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_mouse.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_mouse_toon.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_mouse_toon_round.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_mouse_toon_triangle.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_move_upy.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_none.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_none2.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_none3.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_none4.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_none5.target
+%%DATADIR%%/targets/nose2/nose_base_extraforward.target
+%%DATADIR%%/targets/nose2/nose_wrinkle.target
+%%DATADIR%%/targets/nose2/nostril_compressor.target
+%%DATADIR%%/targets/nose2/nostril_dilator.target
+%%DATADIR%%/targets/ns_abdomen/abdomen_1hole_front_center_mid.target
+%%DATADIR%%/targets/ns_abdomen/abdomen_2holes_front_down.target
+%%DATADIR%%/targets/ns_abdomen/abdomen_2holes_front_mid.target
+%%DATADIR%%/targets/ns_abdomen/abdomen_2holes_front_side_down.target
+%%DATADIR%%/targets/ns_abdomen/abdomen_2holes_front_side_down2.target
+%%DATADIR%%/targets/ns_abdomen/abdomen_2holes_front_side_up.target
+%%DATADIR%%/targets/ns_abdomen/abdomen_2holes_front_side_up2.target
+%%DATADIR%%/targets/ns_abdomen/abdomen_2holes_front_up.target
+%%DATADIR%%/targets/ns_abdomen/abdomen_belly_button_ring.target
+%%DATADIR%%/targets/ns_abdomen/abdomen_belly_button_stick.target
+%%DATADIR%%/targets/ns_abdomen/abdomen_cobra.target
+%%DATADIR%%/targets/ns_abdomen/abdomen_front_gill1.target
+%%DATADIR%%/targets/ns_abdomen/abdomen_front_gill2.target
+%%DATADIR%%/targets/ns_abdomen/abdomen_front_shield.target
+%%DATADIR%%/targets/ns_abdomen/abdomen_halfbody_up.target
+%%DATADIR%%/targets/ns_abdomen/abdomen_none.target
+%%DATADIR%%/targets/ns_abdomen/abdomen_none2.target
+%%DATADIR%%/targets/ns_abdomen/abdomen_none_hole.target
+%%DATADIR%%/targets/ns_abdomen/abdomen_none_hole_side.target
+%%DATADIR%%/targets/ns_abdomen/abdomen_none_scrawny.target
+%%DATADIR%%/targets/ns_abdomen/abdomen_ombelico_in.target
+%%DATADIR%%/targets/ns_abdomen/abdomen_shield.target
+%%DATADIR%%/targets/ns_abdomen/abdomen_twist.target
+%%DATADIR%%/targets/ns_abdomen/belly_button_extrabig.target
+%%DATADIR%%/targets/ns_abdomen/waist_ant.target
+%%DATADIR%%/targets/ns_brow_ridge/brow_puff.target
+%%DATADIR%%/targets/ns_brow_ridge/brow_ridge_crown.target
+%%DATADIR%%/targets/ns_brow_ridge/brow_ridge_down.target
+%%DATADIR%%/targets/ns_brow_ridge/brow_ridge_geom_plane.target
+%%DATADIR%%/targets/ns_brow_ridge/brow_ridge_geom_round.target
+%%DATADIR%%/targets/ns_brow_ridge/brow_ridge_peak.target
+%%DATADIR%%/targets/ns_brow_ridge/brow_ridge_screen_nose.target
+%%DATADIR%%/targets/ns_brow_ridge/brow_ridge_wattle_center.target
+%%DATADIR%%/targets/ns_brow_ridge/brow_ridge_wattle_side.target
+%%DATADIR%%/targets/ns_chin_jaw/chin_branchia_flat.target
+%%DATADIR%%/targets/ns_chin_jaw/chin_geom_cilinder.target
+%%DATADIR%%/targets/ns_chin_jaw/chin_geom_cone.target
+%%DATADIR%%/targets/ns_chin_jaw/chin_geom_parallelep.target
+%%DATADIR%%/targets/ns_chin_jaw/chin_geom_piramid.target
+%%DATADIR%%/targets/ns_chin_jaw/chin_geom_plane.target
+%%DATADIR%%/targets/ns_chin_jaw/chin_geom_round.target
+%%DATADIR%%/targets/ns_chin_jaw/chin_mid_protrunding.target
+%%DATADIR%%/targets/ns_chin_jaw/chin_screen_mouth.target
+%%DATADIR%%/targets/ns_chin_jaw/chin_sideways_protrunding.target
+%%DATADIR%%/targets/ns_chin_jaw/chin_wattle_center.target
+%%DATADIR%%/targets/ns_chin_jaw/jaw_beard.target
+%%DATADIR%%/targets/ns_chin_jaw/jaw_beard1.target
+%%DATADIR%%/targets/ns_chin_jaw/jaw_beard2.target
+%%DATADIR%%/targets/ns_chin_jaw/jaw_beard3.target
+%%DATADIR%%/targets/ns_chin_jaw/jaw_beard4.target
+%%DATADIR%%/targets/ns_chin_jaw/jaw_beard_demon_sideboard.target
+%%DATADIR%%/targets/ns_chin_jaw/jaw_beard_flat.target
+%%DATADIR%%/targets/ns_chin_jaw/jaw_beard_long.target
+%%DATADIR%%/targets/ns_chin_jaw/jaw_beard_long_cut.target
+%%DATADIR%%/targets/ns_chin_jaw/jaw_beard_long_point.target
+%%DATADIR%%/targets/ns_chin_jaw/jaw_beard_sideboard.target
+%%DATADIR%%/targets/ns_chin_jaw/jaw_branchia_flat.target
+%%DATADIR%%/targets/ns_chin_jaw/jaw_branchia_flat_front.target
+%%DATADIR%%/targets/ns_chin_jaw/jaw_branchia_flat_mid.target
+%%DATADIR%%/targets/ns_chin_jaw/jaw_branchia_flat_up.target
+%%DATADIR%%/targets/ns_chin_jaw/jaw_extradown.target
+%%DATADIR%%/targets/ns_chin_jaw/jaw_orang.target
+%%DATADIR%%/targets/ns_chin_jaw/jaw_screen_ear.target
+%%DATADIR%%/targets/ns_chin_jaw/jaw_wattle_center.target
+%%DATADIR%%/targets/ns_chin_jaw/jaw_wattle_down.target
+%%DATADIR%%/targets/ns_chin_jaw/jaw_wattle_front.target
+%%DATADIR%%/targets/ns_chin_jaw/jaw_wattle_side.target
+%%DATADIR%%/targets/ns_chin_jaw/moustace1.target
+%%DATADIR%%/targets/ns_chin_jaw/moustace2.target
+%%DATADIR%%/targets/ns_chin_jaw/moustace3.target
+%%DATADIR%%/targets/ns_chin_jaw/moustace4.target
+%%DATADIR%%/targets/ns_eyes/ciclope_base.target
+%%DATADIR%%/targets/ns_eyes/ciclope_cheek_down_z.target
+%%DATADIR%%/targets/ns_eyes/ciclope_cheek_out_x.target
+%%DATADIR%%/targets/ns_eyes/ciclope_cheek_out_y.target
+%%DATADIR%%/targets/ns_eyes/ciclope_cheek_up_z.target
+%%DATADIR%%/targets/ns_eyes/ciclope_head_height_max.target
+%%DATADIR%%/targets/ns_eyes/ciclope_head_height_min.target
+%%DATADIR%%/targets/ns_eyes/ciclope_head_lenght_max.target
+%%DATADIR%%/targets/ns_eyes/ciclope_head_lenght_min.target
+%%DATADIR%%/targets/ns_eyes/ciclope_head_upper_height_max..target
+%%DATADIR%%/targets/ns_eyes/ciclope_head_upper_height_min.target
+%%DATADIR%%/targets/ns_eyes/ciclope_head_width_max.target
+%%DATADIR%%/targets/ns_eyes/ciclope_head_width_min.target
+%%DATADIR%%/targets/ns_eyes/ciclope_nose_mars_no_nostrill.target
+%%DATADIR%%/targets/ns_eyes/ciclope_nose_mars_nostrill.target
+%%DATADIR%%/targets/ns_eyes/eye_protrunding_line.target
+%%DATADIR%%/targets/ns_forehead/forehead_3promin.target
+%%DATADIR%%/targets/ns_forehead/forehead_3promin_top.target
+%%DATADIR%%/targets/ns_forehead/forehead_cap.target
+%%DATADIR%%/targets/ns_forehead/forehead_crack_center.target
+%%DATADIR%%/targets/ns_forehead/forehead_crack_lateral.target
+%%DATADIR%%/targets/ns_forehead/forehead_crack_mid.target
+%%DATADIR%%/targets/ns_forehead/forehead_crest.target
+%%DATADIR%%/targets/ns_forehead/forehead_crown.target
+%%DATADIR%%/targets/ns_forehead/forehead_crown2.target
+%%DATADIR%%/targets/ns_forehead/forehead_crown_3point.target
+%%DATADIR%%/targets/ns_forehead/forehead_crown_3point_sharp.target
+%%DATADIR%%/targets/ns_forehead/forehead_crown_7point.target
+%%DATADIR%%/targets/ns_forehead/forehead_crown_mid.target
+%%DATADIR%%/targets/ns_forehead/forehead_crown_mid_3point.target
+%%DATADIR%%/targets/ns_forehead/forehead_crown_mid_5point.target
+%%DATADIR%%/targets/ns_forehead/forehead_crown_mid_flat.target
+%%DATADIR%%/targets/ns_forehead/forehead_crown_mid_triangular.target
+%%DATADIR%%/targets/ns_forehead/forehead_crown_puff.target
+%%DATADIR%%/targets/ns_forehead/forehead_geom_bicone.target
+%%DATADIR%%/targets/ns_forehead/forehead_geom_biflap.target
+%%DATADIR%%/targets/ns_forehead/forehead_geom_bihorn.target
+%%DATADIR%%/targets/ns_forehead/forehead_geom_biparallel.target
+%%DATADIR%%/targets/ns_forehead/forehead_geom_bipyramid.target
+%%DATADIR%%/targets/ns_forehead/forehead_geom_bisphere.target
+%%DATADIR%%/targets/ns_forehead/forehead_geom_cone.target
+%%DATADIR%%/targets/ns_forehead/forehead_geom_flat.target
+%%DATADIR%%/targets/ns_forehead/forehead_geom_fractal.target
+%%DATADIR%%/targets/ns_forehead/forehead_geom_ogiva_head.target
+%%DATADIR%%/targets/ns_forehead/forehead_geom_pharaon.target
+%%DATADIR%%/targets/ns_forehead/forehead_geom_pyramid.target
+%%DATADIR%%/targets/ns_forehead/forehead_geom_sphere.target
+%%DATADIR%%/targets/ns_forehead/forehead_geom_tube.target
+%%DATADIR%%/targets/ns_forehead/forehead_geom_twist.target
+%%DATADIR%%/targets/ns_forehead/forehead_geom_twist2.target
+%%DATADIR%%/targets/ns_forehead/forehead_gill1.target
+%%DATADIR%%/targets/ns_forehead/forehead_gill2.target
+%%DATADIR%%/targets/ns_forehead/forehead_gill3.target
+%%DATADIR%%/targets/ns_forehead/forehead_helmet.target
+%%DATADIR%%/targets/ns_forehead/forehead_horn_center.target
+%%DATADIR%%/targets/ns_forehead/forehead_horn_lateral.target
+%%DATADIR%%/targets/ns_forehead/forehead_horn_mid.target
+%%DATADIR%%/targets/ns_forehead/forehead_middle_prominence.target
+%%DATADIR%%/targets/ns_forehead/forehead_middle_prominence_in.target
+%%DATADIR%%/targets/ns_forehead/forehead_narrow.target
+%%DATADIR%%/targets/ns_forehead/forehead_none_hole_front.target
+%%DATADIR%%/targets/ns_forehead/forehead_none_hole_top.target
+%%DATADIR%%/targets/ns_forehead/forehead_peack_puff.target
+%%DATADIR%%/targets/ns_forehead/forehead_point_foreward.target
+%%DATADIR%%/targets/ns_forehead/forehead_promin_center.target
+%%DATADIR%%/targets/ns_forehead/forehead_protruding_line1.target
+%%DATADIR%%/targets/ns_forehead/forehead_protruding_line2.target
+%%DATADIR%%/targets/ns_forehead/forehead_protruding_line3.target
+%%DATADIR%%/targets/ns_forehead/forehead_protruding_line_long.target
+%%DATADIR%%/targets/ns_forehead/forehead_puff.target
+%%DATADIR%%/targets/ns_forehead/forehead_screen_eyes_nose.target
+%%DATADIR%%/targets/ns_forehead/forehead_screen_eyes_nose2.target
+%%DATADIR%%/targets/ns_forehead/forehead_screen_nose_mouth.target
+%%DATADIR%%/targets/ns_forehead/forehead_shield.target
+%%DATADIR%%/targets/ns_forehead/forehead_squid.target
+%%DATADIR%%/targets/ns_forehead/forehead_temple_in.target
+%%DATADIR%%/targets/ns_forehead/forehead_temple_out.target
+%%DATADIR%%/targets/ns_forehead/forehead_top_fin.target
+%%DATADIR%%/targets/ns_forehead/forehead_wattle_center.target
+%%DATADIR%%/targets/ns_forehead/forehead_wattle_side.target
+%%DATADIR%%/targets/ns_forehead/forehead_wrinkle_puff.target
+%%DATADIR%%/targets/ns_forehead/forehead_wrinkle_puff1.target
+%%DATADIR%%/targets/ns_head/back_geom_plane.target
+%%DATADIR%%/targets/ns_head/back_geom_round.target
+%%DATADIR%%/targets/ns_head/face_none_superhero.target
+%%DATADIR%%/targets/ns_head/face_none_superhero2.target
+%%DATADIR%%/targets/ns_head/head_1hole_back.target
+%%DATADIR%%/targets/ns_head/head_2holes_back.target
+%%DATADIR%%/targets/ns_head/head_2holes_back2.target
+%%DATADIR%%/targets/ns_head/head_2holes_front_center_down.target
+%%DATADIR%%/targets/ns_head/head_2holes_front_center_up.target
+%%DATADIR%%/targets/ns_head/head_2holes_front_side_down.target
+%%DATADIR%%/targets/ns_head/head_2holes_front_side_up.target
+%%DATADIR%%/targets/ns_head/head_2holes_side.target
+%%DATADIR%%/targets/ns_head/head_2holes_top.target
+%%DATADIR%%/targets/ns_head/head_4holes_down.target
+%%DATADIR%%/targets/ns_head/head_4holes_up.target
+%%DATADIR%%/targets/ns_head/head_baloon.target
+%%DATADIR%%/targets/ns_head/head_bihorn_lateral.target
+%%DATADIR%%/targets/ns_head/head_bihorn_lateral_curve.target
+%%DATADIR%%/targets/ns_head/head_bihorn_lateral_puff.target
+%%DATADIR%%/targets/ns_head/head_dicotomy.target
+%%DATADIR%%/targets/ns_head/head_down.target
+%%DATADIR%%/targets/ns_head/head_face_side.target
+%%DATADIR%%/targets/ns_head/head_flat_face.target
+%%DATADIR%%/targets/ns_head/head_forward.target
+%%DATADIR%%/targets/ns_head/head_none.target
+%%DATADIR%%/targets/ns_head/head_protunding_back_long.target
+%%DATADIR%%/targets/ns_head/head_protunding_back_long_puff.target
+%%DATADIR%%/targets/ns_head/head_protunding_back_long_puff_down.target
+%%DATADIR%%/targets/ns_head/head_protunding_back_long_puff_down_large.target
+%%DATADIR%%/targets/ns_head/head_protunding_front_wave.target
+%%DATADIR%%/targets/ns_head/head_sunray1.target
+%%DATADIR%%/targets/ns_head/head_sunray2.target
+%%DATADIR%%/targets/ns_head/head_sunray3.target
+%%DATADIR%%/targets/ns_head/head_sunray4.target
+%%DATADIR%%/targets/ns_head/head_sunray5.target
+%%DATADIR%%/targets/ns_head/head_sunray6.target
+%%DATADIR%%/targets/ns_head2/head_3promin_back.target
+%%DATADIR%%/targets/ns_head2/head_back_fin.target
+%%DATADIR%%/targets/ns_head2/head_cone_inverse_close.target
+%%DATADIR%%/targets/ns_head2/head_cone_inverse_open.target
+%%DATADIR%%/targets/ns_head2/head_crown_back.target
+%%DATADIR%%/targets/ns_head2/head_crown_back_2point.target
+%%DATADIR%%/targets/ns_head2/head_crown_back_2point_sharp.target
+%%DATADIR%%/targets/ns_head2/head_dino_crest_cut_large.target
+%%DATADIR%%/targets/ns_head2/head_dino_crest_forward_large.target
+%%DATADIR%%/targets/ns_head2/head_dino_crest_forward_narrow.target
+%%DATADIR%%/targets/ns_head2/head_dino_crest_large.target
+%%DATADIR%%/targets/ns_head2/head_dino_crest_narrow.target
+%%DATADIR%%/targets/ns_head2/head_disk.target
+%%DATADIR%%/targets/ns_head2/head_disk_foreward.target
+%%DATADIR%%/targets/ns_head2/head_face_circle.target
+%%DATADIR%%/targets/ns_head2/head_face_circle_3point.target
+%%DATADIR%%/targets/ns_head2/head_face_orang.target
+%%DATADIR%%/targets/ns_head2/head_face_out_noeyes.target
+%%DATADIR%%/targets/ns_head2/head_face_sun.target
+%%DATADIR%%/targets/ns_head2/head_flap1.target
+%%DATADIR%%/targets/ns_head2/head_flap2.target
+%%DATADIR%%/targets/ns_head2/head_flap3.target
+%%DATADIR%%/targets/ns_head2/head_flap4.target
+%%DATADIR%%/targets/ns_head2/head_flap5.target
+%%DATADIR%%/targets/ns_head2/head_geom_ball.target
+%%DATADIR%%/targets/ns_head2/head_geom_cube.target
+%%DATADIR%%/targets/ns_head2/head_half_back.target
+%%DATADIR%%/targets/ns_head2/head_half_flat_back.target
+%%DATADIR%%/targets/ns_head2/head_half_front.target
+%%DATADIR%%/targets/ns_head2/head_half_in_back.target
+%%DATADIR%%/targets/ns_head2/head_half_mid.target
+%%DATADIR%%/targets/ns_head2/head_half_skalp_large.target
+%%DATADIR%%/targets/ns_head2/head_half_skalp_narrow.target
+%%DATADIR%%/targets/ns_head2/head_little_face.target
+%%DATADIR%%/targets/ns_head2/head_nobody.target
+%%DATADIR%%/targets/ns_head2/head_none_hole.target
+%%DATADIR%%/targets/ns_head2/head_point.target
+%%DATADIR%%/targets/ns_head2/head_point_down.target
+%%DATADIR%%/targets/ns_head2/head_point_down_large.target
+%%DATADIR%%/targets/ns_head2/head_point_puff.target
+%%DATADIR%%/targets/ns_head2/head_point_up.target
+%%DATADIR%%/targets/ns_head2/head_point_up_large.target
+%%DATADIR%%/targets/ns_head2/head_protrunding_lateral.target
+%%DATADIR%%/targets/ns_head2/head_protrunding_lateral_back.target
+%%DATADIR%%/targets/ns_head2/head_rice.target
+%%DATADIR%%/targets/ns_head2/head_skalp_backward_narrow.target
+%%DATADIR%%/targets/ns_head2/head_skalp_narrow.target
+%%DATADIR%%/targets/ns_head2/head_up.target
+%%DATADIR%%/targets/ns_head2/head_upper_up.target
+%%DATADIR%%/targets/ns_head2/head_wattle_back.target
+%%DATADIR%%/targets/ns_head2/head_wattle_back_side.target
+%%DATADIR%%/targets/ns_head2/head_wattle_side.target
+%%DATADIR%%/targets/ns_head2/ogiva_head.target
+%%DATADIR%%/targets/ns_l_cheek/l_cheeck_hamster.target
+%%DATADIR%%/targets/ns_l_cheek/l_cheeck_pincer.target
+%%DATADIR%%/targets/ns_l_cheek/l_cheeck_pincer_big.target
+%%DATADIR%%/targets/ns_l_cheek/l_cheeck_puff_point.target
+%%DATADIR%%/targets/ns_l_cheek/l_cheek_cover_eye3.target
+%%DATADIR%%/targets/ns_l_cheek/l_cheek_geom_quod.target
+%%DATADIR%%/targets/ns_l_cheek/l_cheek_screen_eye.target
+%%DATADIR%%/targets/ns_l_cheek/l_cheek_screen_mouth.target
+%%DATADIR%%/targets/ns_l_cheek/l_cheek_screen_nose.target
+%%DATADIR%%/targets/ns_l_cheek/l_cheek_wattle_down.target
+%%DATADIR%%/targets/ns_l_cheek/l_cheek_wattle_front.target
+%%DATADIR%%/targets/ns_l_cheek/l_cheek_wattle_up.target
+%%DATADIR%%/targets/ns_l_ear/l_ear_bat2.target
%%DATADIR%%/targets/ns_l_ear/l_ear_out_point.target
+%%DATADIR%%/targets/ns_l_ear/l_ear_outer.target
%%DATADIR%%/targets/ns_l_ear/l_ear_paper.target
%%DATADIR%%/targets/ns_l_ear/l_ear_point_ahead.target
%%DATADIR%%/targets/ns_l_ear/l_ear_point_down.target
@@ -1355,6 +5280,7 @@ bin/makehuman
%%DATADIR%%/targets/ns_l_ear/l_ear_puff_moon.target
%%DATADIR%%/targets/ns_l_ear/l_ear_puff_point.target
%%DATADIR%%/targets/ns_l_ear/l_ear_puff_point_down.target
+%%DATADIR%%/targets/ns_l_ear/l_ear_puff_point_down_hole.target
%%DATADIR%%/targets/ns_l_ear/l_ear_puff_point_hook.target
%%DATADIR%%/targets/ns_l_ear/l_ear_puff_prisma.target
%%DATADIR%%/targets/ns_l_ear/l_ear_puff_sharp.target
@@ -1363,15 +5289,22 @@ bin/makehuman
%%DATADIR%%/targets/ns_l_ear/l_ear_puff_sphere3.target
%%DATADIR%%/targets/ns_l_ear/l_ear_rabbit.target
%%DATADIR%%/targets/ns_l_ear/l_ear_rabbit2.target
+%%DATADIR%%/targets/ns_l_ear/l_ear_rabbit3.target
%%DATADIR%%/targets/ns_l_ear/l_ear_rabbit_toon.target
+%%DATADIR%%/targets/ns_l_ear/l_ear_rabbit_toon2.target
%%DATADIR%%/targets/ns_l_ear/l_ear_radar.target
%%DATADIR%%/targets/ns_l_ear/l_ear_radar2.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_roty.target
-%%DATADIR%%/targets/ns_l_ear/l_ear_rotz.target
+%%DATADIR%%/targets/ns_l_ear/l_ear_rot_external.target
+%%DATADIR%%/targets/ns_l_ear/l_ear_rot_vert.target
+%%DATADIR%%/targets/ns_l_ear/l_ear_spak.target
%%DATADIR%%/targets/ns_l_ear/l_ear_spatula.target
%%DATADIR%%/targets/ns_l_ear/l_ear_star2_down2.target
%%DATADIR%%/targets/ns_l_ear/l_ear_star2_up.target
+%%DATADIR%%/targets/ns_l_ear/l_ear_star2_up2.target
%%DATADIR%%/targets/ns_l_ear/l_ear_star3.target
+%%DATADIR%%/targets/ns_l_ear/l_ear_star3_down.target
+%%DATADIR%%/targets/ns_l_ear/l_ear_star3_up.target
+%%DATADIR%%/targets/ns_l_ear/l_ear_star4_down.target
%%DATADIR%%/targets/ns_l_ear/l_ear_star4_up.target
%%DATADIR%%/targets/ns_l_ear/l_ear_star5.target
%%DATADIR%%/targets/ns_l_ear/l_ear_stick.target
@@ -1380,6 +5313,7 @@ bin/makehuman
%%DATADIR%%/targets/ns_l_ear/l_ear_stick_shape.target
%%DATADIR%%/targets/ns_l_ear/l_ear_stick_trian.target
%%DATADIR%%/targets/ns_l_ear/l_ear_trumpet.target
+%%DATADIR%%/targets/ns_l_ear/l_ear_trumpet2.target
%%DATADIR%%/targets/ns_l_ear/l_ear_trumpet3.target
%%DATADIR%%/targets/ns_l_ear/l_ear_wave.target
%%DATADIR%%/targets/ns_l_ear/l_ear_wing_angel.target
@@ -1389,9 +5323,211 @@ bin/makehuman
%%DATADIR%%/targets/ns_l_ear/l_ear_yar.target
%%DATADIR%%/targets/ns_l_ear/l_ear_yod.target
%%DATADIR%%/targets/ns_l_ear/l_ear_yod2.target
-%%DATADIR%%/targets/ns_l_foot/fin5.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_back_none.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_bamby.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_bat.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_bell.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_bi_points.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_blend.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_bongo.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_bulb.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_bulb1.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_bulb2.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_bulb3.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_cat.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_cat2.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_cow.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_cow2.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_cow3.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_cow4.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_cow5.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_crater.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_cut.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_cut2.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_cut3.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_demon.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_dog.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_dog2.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_dog3.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_donkey.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_donut.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_donut2.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_dumbo.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_elf.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_fawn.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_flower.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_flower2.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_flower3.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_flower4.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_flower5.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_geom_circle.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_geom_quod.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_geom_triang.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_goat.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_gremlins.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_in_out.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_inner.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_leaf.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_leaf2.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_leaf3.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_little_bear.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_lobe_point_down.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_lobe_point_out.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_long_round.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_mouse.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_mouse_toon.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_mouse_toon_round.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_mouse_toon_triangle.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_move_up.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_none.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_none2.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_none3.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_none4.target
+%%DATADIR%%/targets/ns_l_ear2/l_ear_none5.target
+%%DATADIR%%/targets/ns_l_eye/L_eye_none_cilinder_in.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_bulb_2extraup.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_bulb_cilinder.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_bulb_cilinder_toon.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_bulb_cube.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_bulb_cube_toon.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_bulb_depth.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_bulb_extraback.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_bulb_extraforward.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_bulb_extraleft.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_bulb_extraright.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_bulb_extraup.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_bulb_height.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_bulb_none.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_bulb_prisma.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_bulb_prisma_toon.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_bulb_tosphere.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_bulb_width.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_monocle_eye_forward.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_monocle_eye_none.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_monocle_eye_none_cone.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_monocle_eye_star.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_monocle_eye_star_in.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_monocle_simple.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_monocle_snail.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_none_cube.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_none_cube_in.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_none_flatten.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_none_flatten2.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_none_flatten3.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_none_in.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_none_in1.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_none_in2.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_none_in3.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_none_in4.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_none_in5.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_none_in6.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_none_in7.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_none_in8.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_none_in9.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_none_out.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_plica semilunaris_fantasy.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_plica semilunaris_half_left.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_plica semilunaris_half_right.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_toon1.target
+%%DATADIR%%/targets/ns_l_eye/l_eye_toon2.target
+%%DATADIR%%/targets/ns_l_eye/l_eyelashes_lower_extralong.target
+%%DATADIR%%/targets/ns_l_eye/l_eyelashes_upper_extralong.target
+%%DATADIR%%/targets/ns_l_eye/l_eyelashes_upper_extralong_down.target
+%%DATADIR%%/targets/ns_l_eye/l_eyelashes_upper_extralong_forward.target
+%%DATADIR%%/targets/ns_l_foot/l_feet_mermaid1.target
+%%DATADIR%%/targets/ns_l_foot/l_feet_mermaid2.target
+%%DATADIR%%/targets/ns_l_foot/l_feet_mermaid3.target
+%%DATADIR%%/targets/ns_l_foot/l_feet_mermaid4.target
+%%DATADIR%%/targets/ns_l_foot/l_feet_mermaid5.target
+%%DATADIR%%/targets/ns_l_foot/l_feet_mermaid6.target
+%%DATADIR%%/targets/ns_l_foot/l_foot_big.target
+%%DATADIR%%/targets/ns_l_foot/l_foot_big_finger.target
+%%DATADIR%%/targets/ns_l_foot/l_foot_big_finger_large.target
+%%DATADIR%%/targets/ns_l_foot/l_foot_bignail.target
+%%DATADIR%%/targets/ns_l_foot/l_foot_bigtoe.target
+%%DATADIR%%/targets/ns_l_foot/l_foot_bigtoe_ape.target
%%DATADIR%%/targets/ns_l_foot/l_foot_fin5.target
-%%DATADIR%%/targets/ns_l_hand/l_hand_2_fingers_basic.target
+%%DATADIR%%/targets/ns_l_foot/l_foot_finger1_a_none_nail.target
+%%DATADIR%%/targets/ns_l_foot/l_foot_finger1_alibaba.target
+%%DATADIR%%/targets/ns_l_foot/l_foot_finger1_bignail.target
+%%DATADIR%%/targets/ns_l_foot/l_foot_finger1_cobra.target
+%%DATADIR%%/targets/ns_l_foot/l_foot_finger1_point.target
+%%DATADIR%%/targets/ns_l_foot/l_foot_finger2.target
+%%DATADIR%%/targets/ns_l_foot/l_foot_finger2_alibaba2.target
+%%DATADIR%%/targets/ns_l_foot/l_foot_finger2_bignail.target
+%%DATADIR%%/targets/ns_l_foot/l_foot_finger2_bigtop.target
+%%DATADIR%%/targets/ns_l_foot/l_foot_finger2_none_nail.target
+%%DATADIR%%/targets/ns_l_foot/l_foot_finger3.target
+%%DATADIR%%/targets/ns_l_foot/l_foot_finger3_bignail.target
+%%DATADIR%%/targets/ns_l_foot/l_foot_finger3_bigtop.target
+%%DATADIR%%/targets/ns_l_foot/l_foot_finger3_none_nail.target
+%%DATADIR%%/targets/ns_l_foot/l_foot_finger3_point.target
+%%DATADIR%%/targets/ns_l_foot/l_foot_finger4.target
+%%DATADIR%%/targets/ns_l_foot/l_foot_finger4_bigtop.target
+%%DATADIR%%/targets/ns_l_foot/l_foot_finger4_none_nail.target
+%%DATADIR%%/targets/ns_l_foot/l_foot_finger4_point.target
+%%DATADIR%%/targets/ns_l_foot/l_foot_finger_down.target
+%%DATADIR%%/targets/ns_l_foot/l_foot_finger_down2.target
+%%DATADIR%%/targets/ns_l_foot/l_foot_giant.target
+%%DATADIR%%/targets/ns_l_foot/l_foot_gill1.target
+%%DATADIR%%/targets/ns_l_foot/l_foot_gill2.target
+%%DATADIR%%/targets/ns_l_foot/l_foot_nail_sharp.target
+%%DATADIR%%/targets/ns_l_foot/l_foot_nobody.target
+%%DATADIR%%/targets/ns_l_foot/l_foot_none.target
+%%DATADIR%%/targets/ns_l_foot/l_foot_point.target
+%%DATADIR%%/targets/ns_l_foot/l_foot_smooth.target
+%%DATADIR%%/targets/ns_l_foot/l_foot_total_smooth.target
+%%DATADIR%%/targets/ns_l_foot/l_foot_upper_smooth.target
+%%DATADIR%%/targets/ns_l_foot2/l_foot_lower_flat_down.target
+%%DATADIR%%/targets/ns_l_foot2/l_foot_lower_thin_down.target
+%%DATADIR%%/targets/ns_l_foot2/l_foot_wing_back.target
+%%DATADIR%%/targets/ns_l_foot2/l_foot_wing_lateral.target
+%%DATADIR%%/targets/ns_l_foot2/l_foot_wing_side.target
+%%DATADIR%%/targets/ns_l_foot2/l_foot_wing_upper.target
+%%DATADIR%%/targets/ns_l_foot2/l_paw_fauno.target
+%%DATADIR%%/targets/ns_l_foot2/l_paw_fauno_base.target
+%%DATADIR%%/targets/ns_l_foot2/l_paw_nail.target
+%%DATADIR%%/targets/ns_l_foot2/l_paw_nail2.target
+%%DATADIR%%/targets/ns_l_foot2/l_paw_nail2_camel.target
+%%DATADIR%%/targets/ns_l_foot2/l_paw_nail2_fauno.target
+%%DATADIR%%/targets/ns_l_foot2/l_paw_nail2_large.target
+%%DATADIR%%/targets/ns_l_foot2/l_paw_nail2_long.target
+%%DATADIR%%/targets/ns_l_foot2/l_paw_nail2_normal.target
+%%DATADIR%%/targets/ns_l_foot2/l_paw_nail2_sharp.target
+%%DATADIR%%/targets/ns_l_foot2/l_paw_nail2_taurus.target
+%%DATADIR%%/targets/ns_l_foot2/l_paw_nail3_dino.target
+%%DATADIR%%/targets/ns_l_foot2/l_paw_nail3_dino_long.target
+%%DATADIR%%/targets/ns_l_foot2/l_paw_nail3_long.target
+%%DATADIR%%/targets/ns_l_foot2/l_paw_nail3_normal.target
+%%DATADIR%%/targets/ns_l_foot2/l_paw_nail3_predatory.target
+%%DATADIR%%/targets/ns_l_foot2/l_paw_nail3_sharp.target
+%%DATADIR%%/targets/ns_l_foot2/l_paw_nail4_dino.target
+%%DATADIR%%/targets/ns_l_foot2/l_paw_nail4_dino_long.target
+%%DATADIR%%/targets/ns_l_foot2/l_paw_nail4_long.target
+%%DATADIR%%/targets/ns_l_foot2/l_paw_nail4_normal.target
+%%DATADIR%%/targets/ns_l_foot2/l_paw_nail4_predatory.target
+%%DATADIR%%/targets/ns_l_foot2/l_paw_nail4_sharp.target
+%%DATADIR%%/targets/ns_l_foot2/l_paw_nail_horse.target
+%%DATADIR%%/targets/ns_l_foot2/l_paw_nail_large.target
+%%DATADIR%%/targets/ns_l_foot2/l_paw_nail_long.target
+%%DATADIR%%/targets/ns_l_foot2/l_paw_nail_sharp.target
+%%DATADIR%%/targets/ns_l_foot2/l_paw_spine1.target
+%%DATADIR%%/targets/ns_l_foot2/l_paw_spine2.target
+%%DATADIR%%/targets/ns_l_foot2/l_paw_spine3.target
+%%DATADIR%%/targets/ns_l_foot2/l_paw_spine4.target
+%%DATADIR%%/targets/ns_l_forefinger/l_extralong_forefinger.target
+%%DATADIR%%/targets/ns_l_forefinger/l_hand_aculea_forefinger.target
+%%DATADIR%%/targets/ns_l_forefinger/l_hand_aculea_forefinger_sideways.target
+%%DATADIR%%/targets/ns_l_forefinger/l_nail_bifid_forefinger.target
+%%DATADIR%%/targets/ns_l_forefinger/l_nail_claw_forefinger.target
+%%DATADIR%%/targets/ns_l_forefinger/l_nail_comma_forefinger.target
+%%DATADIR%%/targets/ns_l_forefinger/l_nail_large_forefinger.target
+%%DATADIR%%/targets/ns_l_forefinger/l_nail_sharp_forefinger.target
+%%DATADIR%%/targets/ns_l_forefinger/l_nail_sphere_forefinger.target
+%%DATADIR%%/targets/ns_l_forefinger/l_nail_thai_forefinger.target
+%%DATADIR%%/targets/ns_l_forefinger/l_nail_twist_forefinger.target
+%%DATADIR%%/targets/ns_l_hand/l_hand_1hole_up1.target
+%%DATADIR%%/targets/ns_l_hand/l_hand_1hole_up2.target
%%DATADIR%%/targets/ns_l_hand/l_hand_2_fingers_big_top.target
%%DATADIR%%/targets/ns_l_hand/l_hand_2_fingers_point.target
%%DATADIR%%/targets/ns_l_hand/l_hand_2_fingers_thin.target
@@ -1404,98 +5540,446 @@ bin/makehuman
%%DATADIR%%/targets/ns_l_hand/l_hand_4_fingers.target
%%DATADIR%%/targets/ns_l_hand/l_hand_4_fingers_big_top.target
%%DATADIR%%/targets/ns_l_hand/l_hand_4_fingers_no_nail.target
-%%DATADIR%%/targets/ns_l_hand/l_hand_4_fingers_point.target
%%DATADIR%%/targets/ns_l_hand/l_hand_4_fingers_sharpen.target
%%DATADIR%%/targets/ns_l_hand/l_hand_alibaba.target
%%DATADIR%%/targets/ns_l_hand/l_hand_arthritis.target
+%%DATADIR%%/targets/ns_l_hand/l_hand_back_blade.target
%%DATADIR%%/targets/ns_l_hand/l_hand_basic.target
+%%DATADIR%%/targets/ns_l_hand/l_hand_big.target
%%DATADIR%%/targets/ns_l_hand/l_hand_big_top.target
%%DATADIR%%/targets/ns_l_hand/l_hand_but.target
%%DATADIR%%/targets/ns_l_hand/l_hand_cone.target
%%DATADIR%%/targets/ns_l_hand/l_hand_cube.target
-%%DATADIR%%/targets/ns_l_hand/l_hand_cube_no_nail.target
%%DATADIR%%/targets/ns_l_hand/l_hand_cylinder.target
%%DATADIR%%/targets/ns_l_hand/l_hand_cylinder_cut.target
-%%DATADIR%%/targets/ns_l_hand/l_hand_cylinder_no_nail.target
-%%DATADIR%%/targets/ns_l_hand/l_hand_fingers_long.target
+%%DATADIR%%/targets/ns_l_hand/l_hand_extrascrawny.target
%%DATADIR%%/targets/ns_l_hand/l_hand_flat_down.target
%%DATADIR%%/targets/ns_l_hand/l_hand_geco.target
+%%DATADIR%%/targets/ns_l_hand/l_hand_giant.target
%%DATADIR%%/targets/ns_l_hand/l_hand_interfingers.target
%%DATADIR%%/targets/ns_l_hand/l_hand_knunkle.target
%%DATADIR%%/targets/ns_l_hand/l_hand_lagoon.target
+%%DATADIR%%/targets/ns_l_hand/l_hand_mid_blade.target
%%DATADIR%%/targets/ns_l_hand/l_hand_mitten_no_nail.target
%%DATADIR%%/targets/ns_l_hand/l_hand_mitten_shape.target
%%DATADIR%%/targets/ns_l_hand/l_hand_mitten_sharp.target
-%%DATADIR%%/targets/ns_l_hand/l_hand_no_nail.target
-%%DATADIR%%/targets/ns_l_hand/l_hand_no_nail2.target
+%%DATADIR%%/targets/ns_l_hand/l_hand_nobody.target
%%DATADIR%%/targets/ns_l_hand/l_hand_none.target
-%%DATADIR%%/targets/ns_l_hand/l_hand_ogiva.target
+%%DATADIR%%/targets/ns_l_hand/l_hand_palm_blade.target
%%DATADIR%%/targets/ns_l_hand/l_hand_piovra.target
%%DATADIR%%/targets/ns_l_hand/l_hand_point.target
%%DATADIR%%/targets/ns_l_hand/l_hand_point_long_basic.target
%%DATADIR%%/targets/ns_l_hand/l_hand_prisma.target
-%%DATADIR%%/targets/ns_l_hand/l_hand_prisma_cut.target
-%%DATADIR%%/targets/ns_l_hand/l_hand_prisma_no_nail.target
-%%DATADIR%%/targets/ns_l_hand/l_hand_prisma_no_nail_cut.target
%%DATADIR%%/targets/ns_l_hand/l_hand_robot.target
-%%DATADIR%%/targets/ns_l_hand/l_hand_root.target
-%%DATADIR%%/targets/ns_l_hand/l_hand_thin_fingers.target
+%%DATADIR%%/targets/ns_l_hand/l_hand_sideways_blade.target
+%%DATADIR%%/targets/ns_l_hand/l_hand_taurus_mitten.target
%%DATADIR%%/targets/ns_l_hand/l_hand_toon.target
%%DATADIR%%/targets/ns_l_hand/l_hand_trumpet.target
-%%DATADIR%%/targets/ns_l_hand/l_nail_claw.target
-%%DATADIR%%/targets/ns_l_hand/l_nail_comma.target
-%%DATADIR%%/targets/ns_l_hand/l_nail_sphere.target
-%%DATADIR%%/targets/ns_l_hand/l_nail_thai.target
-%%DATADIR%%/targets/ns_l_hand/l_nail_twist.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_bamby.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_bat.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_bell.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_bi_points.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_blend.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_bongo.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_bulb1.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_bulb2.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_bulb3.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_cat.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_cat2.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_cow.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_cow2.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_cow3.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_cow4.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_cow5.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_cut.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_cut2.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_cut3.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_demon.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_dog.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_dog2.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_dog3.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_donkey.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_donut.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_donut2.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_dumbo.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_fawn.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_flower.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_flower2.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_flower3.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_goat.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_gremlins.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_in_out.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_leaf.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_leaf2.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_lobe_point_out.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_long_round.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_mouse.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_mouse_toon.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_mouse_toon_round.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_mouse_toon_triangle.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_move_upy.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_none.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_none2.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_none3.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_none4.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_none5.target
+%%DATADIR%%/targets/ns_l_littlefinger/l_extralong_littlefinger.target
+%%DATADIR%%/targets/ns_l_littlefinger/l_hand_aculea_littlefinger.target
+%%DATADIR%%/targets/ns_l_littlefinger/l_hand_aculea_littlefinger_sideways.target
+%%DATADIR%%/targets/ns_l_littlefinger/l_nail_bifid_littlefinger.target
+%%DATADIR%%/targets/ns_l_littlefinger/l_nail_claw_littlefinger.target
+%%DATADIR%%/targets/ns_l_littlefinger/l_nail_comma_littlefinger.target
+%%DATADIR%%/targets/ns_l_littlefinger/l_nail_large_littlefinger.target
+%%DATADIR%%/targets/ns_l_littlefinger/l_nail_sharp_littlefinger.target
+%%DATADIR%%/targets/ns_l_littlefinger/l_nail_sphere_littlefinger.target
+%%DATADIR%%/targets/ns_l_littlefinger/l_nail_thai_littlefinger.target
+%%DATADIR%%/targets/ns_l_littlefinger/l_nail_twist_littlefinger.target
+%%DATADIR%%/targets/ns_l_lower_arm/l_lower_arm_1hole_back.target
+%%DATADIR%%/targets/ns_l_lower_arm/l_lower_arm_1hole_down.target
+%%DATADIR%%/targets/ns_l_lower_arm/l_lower_arm_1hole_front.target
+%%DATADIR%%/targets/ns_l_lower_arm/l_lower_arm_1hole_top.target
+%%DATADIR%%/targets/ns_l_lower_arm/l_lower_arm_extralong.target
+%%DATADIR%%/targets/ns_l_lower_arm/l_lower_arm_extrascrawny.target
+%%DATADIR%%/targets/ns_l_lower_arm/l_lower_arm_fold_glove1.target
+%%DATADIR%%/targets/ns_l_lower_arm/l_lower_arm_fold_glove2.target
+%%DATADIR%%/targets/ns_l_lower_arm/l_lower_arm_fold_glove3.target
+%%DATADIR%%/targets/ns_l_lower_arm/l_lower_arm_fold_glove4.target
+%%DATADIR%%/targets/ns_l_lower_arm/l_lower_arm_fold_sleeve1.target
+%%DATADIR%%/targets/ns_l_lower_arm/l_lower_arm_fold_sleeve2.target
+%%DATADIR%%/targets/ns_l_lower_arm/l_lower_arm_half.target
+%%DATADIR%%/targets/ns_l_lower_arm/l_lower_arm_nobody.target
+%%DATADIR%%/targets/ns_l_lower_arm/l_lower_arm_none.target
+%%DATADIR%%/targets/ns_l_lower_arm/l_lower_arm_shield.target
+%%DATADIR%%/targets/ns_l_lower_arm/l_lower_arm_temptacle.target
+%%DATADIR%%/targets/ns_l_lower_arm/l_lower_arm_turbo.target
+%%DATADIR%%/targets/ns_l_lower_arm/l_lower_arm_turbo_sharp.target
+%%DATADIR%%/targets/ns_l_lower_leg/l_leg_genius.target
+%%DATADIR%%/targets/ns_l_lower_leg/l_leg_lower_genius.target
+%%DATADIR%%/targets/ns_l_lower_leg/l_lower_1hole_back.target
+%%DATADIR%%/targets/ns_l_lower_leg/l_lower_1hole_front_down.target
+%%DATADIR%%/targets/ns_l_lower_leg/l_lower_1hole_front_up.target
+%%DATADIR%%/targets/ns_l_lower_leg/l_lower_1hole_side.target
+%%DATADIR%%/targets/ns_l_lower_leg/l_lower_1hole_side_in.target
+%%DATADIR%%/targets/ns_l_lower_leg/l_lower_knee_extralong.target
+%%DATADIR%%/targets/ns_l_lower_leg/l_lower_leg_back_shield.target
+%%DATADIR%%/targets/ns_l_lower_leg/l_lower_leg_extralong.target
+%%DATADIR%%/targets/ns_l_lower_leg/l_lower_leg_extrascrawny.target
+%%DATADIR%%/targets/ns_l_lower_leg/l_lower_leg_fold_boot1.target
+%%DATADIR%%/targets/ns_l_lower_leg/l_lower_leg_fold_boot2.target
+%%DATADIR%%/targets/ns_l_lower_leg/l_lower_leg_fold_tube1.target
+%%DATADIR%%/targets/ns_l_lower_leg/l_lower_leg_fold_tube2.target
+%%DATADIR%%/targets/ns_l_lower_leg/l_lower_leg_fold_tube_puff.target
+%%DATADIR%%/targets/ns_l_lower_leg/l_lower_leg_front_shield.target
+%%DATADIR%%/targets/ns_l_lower_leg/l_lower_leg_half.target
+%%DATADIR%%/targets/ns_l_lower_leg/l_lower_leg_nobody.target
+%%DATADIR%%/targets/ns_l_lower_leg/l_lower_leg_none.target
+%%DATADIR%%/targets/ns_l_lower_leg/l_lower_leg_shield.target
+%%DATADIR%%/targets/ns_l_lower_leg/l_lower_leg_turbo.target
+%%DATADIR%%/targets/ns_l_middlefinger/l_extralong_middlefinger.target
+%%DATADIR%%/targets/ns_l_middlefinger/l_hand_aculea_middlefinger.target
+%%DATADIR%%/targets/ns_l_middlefinger/l_hand_aculea_middlefinger_sideways.target
+%%DATADIR%%/targets/ns_l_middlefinger/l_nail_bifid_middlefinger.target
+%%DATADIR%%/targets/ns_l_middlefinger/l_nail_claw_middlefinger.target
+%%DATADIR%%/targets/ns_l_middlefinger/l_nail_comma_middlefinger.target
+%%DATADIR%%/targets/ns_l_middlefinger/l_nail_large_middlefinger.target
+%%DATADIR%%/targets/ns_l_middlefinger/l_nail_middle_middlefinger.target
+%%DATADIR%%/targets/ns_l_middlefinger/l_nail_sharp_middlefinger.target
+%%DATADIR%%/targets/ns_l_middlefinger/l_nail_sphere_middlefinger.target
+%%DATADIR%%/targets/ns_l_middlefinger/l_nail_thai_middlefinger.target
+%%DATADIR%%/targets/ns_l_middlefinger/l_nail_twist_middlefinger.target
+%%DATADIR%%/targets/ns_l_pollex/l_extralong_pollex.target
+%%DATADIR%%/targets/ns_l_pollex/l_nail_bifid_pollex.target
+%%DATADIR%%/targets/ns_l_pollex/l_nail_claw_pollex.target
+%%DATADIR%%/targets/ns_l_pollex/l_nail_comma_pollex.target
+%%DATADIR%%/targets/ns_l_pollex/l_nail_large_pollex.target
+%%DATADIR%%/targets/ns_l_pollex/l_nail_sharp_pollex.target
+%%DATADIR%%/targets/ns_l_pollex/l_nail_sphere_pollex.target
+%%DATADIR%%/targets/ns_l_pollex/l_nail_thai_pollex.target
+%%DATADIR%%/targets/ns_l_ringfinger/l_extralong_ringfinger.target
+%%DATADIR%%/targets/ns_l_ringfinger/l_hand_aculea_ringfinger.target
+%%DATADIR%%/targets/ns_l_ringfinger/l_hand_aculea_ringfinger_sideways.target
+%%DATADIR%%/targets/ns_l_ringfinger/l_nail_bifid_ringfinger.target
+%%DATADIR%%/targets/ns_l_ringfinger/l_nail_claw_ringfinger.target
+%%DATADIR%%/targets/ns_l_ringfinger/l_nail_comma_ringfinger.target
+%%DATADIR%%/targets/ns_l_ringfinger/l_nail_large_ringfinger.target
+%%DATADIR%%/targets/ns_l_ringfinger/l_nail_sharp_ringfinger.target
+%%DATADIR%%/targets/ns_l_ringfinger/l_nail_sphere_ringfinger.target
+%%DATADIR%%/targets/ns_l_ringfinger/l_nail_thai_ringfinger.target
+%%DATADIR%%/targets/ns_l_ringfinger/l_nail_twist_ringfinger.target
+%%DATADIR%%/targets/ns_l_shoulder/l_shoulder_double.target
+%%DATADIR%%/targets/ns_l_shoulder/l_shoulder_point.target
+%%DATADIR%%/targets/ns_l_shoulder/l_shoulder_shield.target
+%%DATADIR%%/targets/ns_l_upper_arm/l_upper_arm_1hole_back_up.target
+%%DATADIR%%/targets/ns_l_upper_arm/l_upper_arm_1hole_down.target
+%%DATADIR%%/targets/ns_l_upper_arm/l_upper_arm_1hole_front.target
+%%DATADIR%%/targets/ns_l_upper_arm/l_upper_arm_1hole_top_down.target
+%%DATADIR%%/targets/ns_l_upper_arm/l_upper_arm_1hole_top_up.target
+%%DATADIR%%/targets/ns_l_upper_arm/l_upper_arm_extralong.target
+%%DATADIR%%/targets/ns_l_upper_arm/l_upper_arm_extranone.target
+%%DATADIR%%/targets/ns_l_upper_arm/l_upper_arm_extrascrawny.target
+%%DATADIR%%/targets/ns_l_upper_arm/l_upper_arm_fold_glove1.target
+%%DATADIR%%/targets/ns_l_upper_arm/l_upper_arm_fold_glove2.target
+%%DATADIR%%/targets/ns_l_upper_arm/l_upper_arm_fold_sleeve1.target
+%%DATADIR%%/targets/ns_l_upper_arm/l_upper_arm_fold_sleeve2.target
+%%DATADIR%%/targets/ns_l_upper_arm/l_upper_arm_fold_sleeve_puff.target
+%%DATADIR%%/targets/ns_l_upper_arm/l_upper_arm_half.target
+%%DATADIR%%/targets/ns_l_upper_arm/l_upper_arm_nobody.target
+%%DATADIR%%/targets/ns_l_upper_arm/l_upper_arm_none.target
+%%DATADIR%%/targets/ns_l_upper_arm/l_upper_arm_turbo.target
+%%DATADIR%%/targets/ns_l_upper_arm/l_upper_arm_wing.target
+%%DATADIR%%/targets/ns_l_upper_leg/l_upper_1hole_back_down.target
+%%DATADIR%%/targets/ns_l_upper_leg/l_upper_1hole_back_mid.target
+%%DATADIR%%/targets/ns_l_upper_leg/l_upper_1hole_back_up.target
+%%DATADIR%%/targets/ns_l_upper_leg/l_upper_1hole_front_down.target
+%%DATADIR%%/targets/ns_l_upper_leg/l_upper_1hole_front_mid.target
+%%DATADIR%%/targets/ns_l_upper_leg/l_upper_1hole_front_up.target
+%%DATADIR%%/targets/ns_l_upper_leg/l_upper_1hole_side_down.target
+%%DATADIR%%/targets/ns_l_upper_leg/l_upper_1hole_side_mid.target
+%%DATADIR%%/targets/ns_l_upper_leg/l_upper_1hole_side_up.target
+%%DATADIR%%/targets/ns_l_upper_leg/l_upper_gill1.target
+%%DATADIR%%/targets/ns_l_upper_leg/l_upper_gill2.target
+%%DATADIR%%/targets/ns_l_upper_leg/l_upper_gill3.target
+%%DATADIR%%/targets/ns_l_upper_leg/l_upper_leg_extranone.target
+%%DATADIR%%/targets/ns_l_upper_leg/l_upper_leg_extrascrawny.target
+%%DATADIR%%/targets/ns_l_upper_leg/l_upper_leg_fold_boot1.target
+%%DATADIR%%/targets/ns_l_upper_leg/l_upper_leg_fold_boot2.target
+%%DATADIR%%/targets/ns_l_upper_leg/l_upper_leg_fold_tube1.target
+%%DATADIR%%/targets/ns_l_upper_leg/l_upper_leg_fold_tube2.target
+%%DATADIR%%/targets/ns_l_upper_leg/l_upper_leg_half.target
+%%DATADIR%%/targets/ns_l_upper_leg/l_upper_leg_nobody.target
+%%DATADIR%%/targets/ns_l_upper_leg/l_upper_leg_none.target
+%%DATADIR%%/targets/ns_l_upper_leg/l_upper_leg_side_shield.target
+%%DATADIR%%/targets/ns_mouth/l_lower_lips_cut1.target
+%%DATADIR%%/targets/ns_mouth/l_lower_lips_cut2.target
+%%DATADIR%%/targets/ns_mouth/l_lower_lips_cut3.target
+%%DATADIR%%/targets/ns_mouth/l_lower_lips_cut4.target
+%%DATADIR%%/targets/ns_mouth/l_upper_lips_cut1.target
+%%DATADIR%%/targets/ns_mouth/l_upper_lips_cut2.target
+%%DATADIR%%/targets/ns_mouth/l_upper_lips_cut3.target
+%%DATADIR%%/targets/ns_mouth/l_upper_lips_cut4.target
+%%DATADIR%%/targets/ns_mouth/l_upper_lips_cut5.target
+%%DATADIR%%/targets/ns_mouth/ns_mouth_geom_circle.target
+%%DATADIR%%/targets/ns_mouth/ns_mouth_geom_mod.target
+%%DATADIR%%/targets/ns_mouth/ns_mouth_geom_quod.target
+%%DATADIR%%/targets/ns_mouth/ns_mouth_geom_triang.target
+%%DATADIR%%/targets/ns_mouth/ns_mouth_lips_none.target
+%%DATADIR%%/targets/ns_mouth/ns_mouth_lips_none2.target
+%%DATADIR%%/targets/ns_mouth/ns_mouth_lips_none3.target
+%%DATADIR%%/targets/ns_mouth/ns_mouth_lips_none4.target
+%%DATADIR%%/targets/ns_mouth/ns_mouth_lips_none5.target
+%%DATADIR%%/targets/ns_mouth/ns_mouth_lips_none6.target
+%%DATADIR%%/targets/ns_mouth/ns_mouth_lower_lips_left_cut1.target
+%%DATADIR%%/targets/ns_mouth/ns_mouth_lower_lips_left_cut2.target
+%%DATADIR%%/targets/ns_mouth/ns_mouth_lower_lips_left_cut3.target
+%%DATADIR%%/targets/ns_mouth/ns_mouth_lower_lips_left_cut4.target
+%%DATADIR%%/targets/ns_mouth/ns_mouth_lower_lips_mid.target
+%%DATADIR%%/targets/ns_mouth/ns_mouth_lower_lips_right_cut1.target
+%%DATADIR%%/targets/ns_mouth/ns_mouth_lower_lips_right_cut2.target
+%%DATADIR%%/targets/ns_mouth/ns_mouth_lower_lips_right_cut3.target
+%%DATADIR%%/targets/ns_mouth/ns_mouth_lower_lips_right_cut4.target
+%%DATADIR%%/targets/ns_mouth/ns_mouth_none_flat.target
+%%DATADIR%%/targets/ns_mouth/ns_mouth_none_hole.target
+%%DATADIR%%/targets/ns_mouth/ns_mouth_none_sphere.target
+%%DATADIR%%/targets/ns_mouth/ns_mouth_none_sphere_nonosenostrill.target
+%%DATADIR%%/targets/ns_mouth/ns_mouth_none_superhero.target
+%%DATADIR%%/targets/ns_mouth/ns_mouth_none_tube.target
+%%DATADIR%%/targets/ns_mouth/ns_mouth_proboscis.target
+%%DATADIR%%/targets/ns_mouth/ns_mouth_upper_lips_left_cut1.target
+%%DATADIR%%/targets/ns_mouth/ns_mouth_upper_lips_left_cut2.target
+%%DATADIR%%/targets/ns_mouth/ns_mouth_upper_lips_left_cut3.target
+%%DATADIR%%/targets/ns_mouth/ns_mouth_upper_lips_left_cut4.target
+%%DATADIR%%/targets/ns_mouth/ns_mouth_upper_lips_left_cut5.target
+%%DATADIR%%/targets/ns_mouth/ns_mouth_upper_lips_mid.target
+%%DATADIR%%/targets/ns_mouth/ns_mouth_upper_lips_right_cut1.target
+%%DATADIR%%/targets/ns_mouth/ns_mouth_upper_lips_right_cut2.target
+%%DATADIR%%/targets/ns_mouth/ns_mouth_upper_lips_right_cut3.target
+%%DATADIR%%/targets/ns_mouth/ns_mouth_upper_lips_right_cut4.target
+%%DATADIR%%/targets/ns_mouth/ns_mouth_upper_lips_right_cut5.target
+%%DATADIR%%/targets/ns_mouth/r_lower_lips_cut1.target
+%%DATADIR%%/targets/ns_mouth/r_lower_lips_cut2.target
+%%DATADIR%%/targets/ns_mouth/r_lower_lips_r_cut3.target
+%%DATADIR%%/targets/ns_mouth/r_lower_lips_r_cut4.target
+%%DATADIR%%/targets/ns_mouth/r_upper_lips_cut2.target
+%%DATADIR%%/targets/ns_mouth/r_upper_lips_cut5.target
+%%DATADIR%%/targets/ns_mouth/r_upper_lips_r_cut1.target
+%%DATADIR%%/targets/ns_mouth/r_upper_lips_r_cut3.target
+%%DATADIR%%/targets/ns_mouth/r_upper_lips_r_cut4.target
+%%DATADIR%%/targets/ns_mouth2/mouth_lower_lip_elephant.target
+%%DATADIR%%/targets/ns_mouth2/mouth_swordfish.target
+%%DATADIR%%/targets/ns_mouth2/ns_mouth_barrier_round.target
+%%DATADIR%%/targets/ns_mouth2/ns_mouth_barrier_round0.target
+%%DATADIR%%/targets/ns_mouth2/ns_mouth_barrier_round0_wide.target
+%%DATADIR%%/targets/ns_mouth2/ns_mouth_barrier_round1.target
+%%DATADIR%%/targets/ns_mouth2/ns_mouth_barrier_round2.target
+%%DATADIR%%/targets/ns_mouth2/ns_mouth_barrier_round3.target
+%%DATADIR%%/targets/ns_mouth2/ns_mouth_barrier_round3_wide.target
+%%DATADIR%%/targets/ns_mouth2/ns_mouth_barrier_round4_wide.target
+%%DATADIR%%/targets/ns_mouth2/ns_mouth_barrier_round5.target
+%%DATADIR%%/targets/ns_mouth2/ns_mouth_barrier_round5_wide.target
+%%DATADIR%%/targets/ns_mouth3/muzzle1.target
+%%DATADIR%%/targets/ns_mouth3/muzzle2.target
+%%DATADIR%%/targets/ns_mouth3/muzzle3.target
+%%DATADIR%%/targets/ns_mouth3/muzzle4.target
+%%DATADIR%%/targets/ns_mouth3/muzzle5.target
+%%DATADIR%%/targets/ns_mouth3/muzzle6.target
+%%DATADIR%%/targets/ns_mouth3/muzzle_monkey_little.target
+%%DATADIR%%/targets/ns_mouth3/muzzle_monkey_long.target
+%%DATADIR%%/targets/ns_mouth3/muzzle_pig_flat.target
+%%DATADIR%%/targets/ns_mouth3/muzzle_pig_little.target
+%%DATADIR%%/targets/ns_mouth3/muzzle_pig_long.target
+%%DATADIR%%/targets/ns_mouth3/muzzle_pig_middle.target
+%%DATADIR%%/targets/ns_mouth3/muzzle_point_simple.target
+%%DATADIR%%/targets/ns_mouth3/muzzle_point_simple_little.target
+%%DATADIR%%/targets/ns_mouth3/muzzle_point_simple_mouth_long.target
+%%DATADIR%%/targets/ns_mouth3/muzzle_point_simple_mouth_long_nose1.target
+%%DATADIR%%/targets/ns_mouth3/muzzle_point_simple_mouth_long_nose1_down.target
+%%DATADIR%%/targets/ns_mouth3/muzzle_point_simple_mouth_long_nose2.target
+%%DATADIR%%/targets/ns_mouth3/muzzle_point_simple_mouth_mid.target
+%%DATADIR%%/targets/ns_mouth3/muzzle_point_simple_proboscis.target
+%%DATADIR%%/targets/ns_mouth3/muzzle_point_simple_puff.target
+%%DATADIR%%/targets/ns_mouth3/nose_cat.target
+%%DATADIR%%/targets/ns_mouth3/nose_cat_flat.target
+%%DATADIR%%/targets/ns_mouth3/nose_dog.target
+%%DATADIR%%/targets/ns_mouth3/nose_dog_flat.target
+%%DATADIR%%/targets/ns_mouth3/nose_dog_large_toon.target
+%%DATADIR%%/targets/ns_mouth3/nose_dog_toon.target
+%%DATADIR%%/targets/ns_mouth3/nose_dog_toon2.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_bat_1.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_bat_2.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_cat_extraflat.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_cat_flat.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_cat_flat_down.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_cat_flat_down_narrow.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_cat_flat_narrow.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_cat_little.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_cat_little_down.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_cat_little_down_narrow.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_cat_little_narrow.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_cat_middle.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_cat_middle_down.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_cat_middle_down_narrow.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_cat_middle_narrow.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_dog_extraflat.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_dog_extralong.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_dog_extralong_nostrill_none.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_dog_extralong_toon.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_dog_flat.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_dog_flat_large.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_dog_flat_large_toon.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_dog_flat_toon.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_dog_little.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_dog_little_large.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_dog_little_large_toon.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_dog_little_toon.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_dog_long.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_dog_long_large.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_dog_long_large_toon.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_dog_long_toon.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_dog_middle.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_dog_middle_large.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_dog_middle_large_toon.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_dog_middle_toon.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_extralong_fantasy.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_extralong_fantasy_stripes.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_fantasy.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_feline_flat.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_feline_flat_chin_protrunding.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_feline_little.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_feline_little_chin_protruding.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_feline_long.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_feline_long_chin_protrunding.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_feline_long_down.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_feline_long_down_chin_protrunding.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_feline_middle.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_feline_middle_chin_protrunding.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_frog_extrabig_fantasy.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_frog_extrabig_fantasy_bigmouth.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_frog_simply_fantasy.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_frog_simply_fantasy_chin_down.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_frog_simply_fantasy_chin_protrunding.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_frog_simply_fantasy_lower.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_frog_simply_fantasy_upper.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_mouse_hight.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_mouse_hight_long.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_mouse_point.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_mouse_point_toon.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_mouse_point_toon_down.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_mouse_shrew_long.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_mouse_shrew_long_toon.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_mouse_shrew_short.target
+%%DATADIR%%/targets/ns_muzzle/muzzle_mouse_shrew_short_toon.target
+%%DATADIR%%/targets/ns_neck/neck_2hole_down.target
+%%DATADIR%%/targets/ns_neck/neck_2hole_side.target
+%%DATADIR%%/targets/ns_neck/neck_2hole_up.target
+%%DATADIR%%/targets/ns_neck/neck_back_fin.target
+%%DATADIR%%/targets/ns_neck/neck_back_gill1.target
+%%DATADIR%%/targets/ns_neck/neck_back_gill2.target
+%%DATADIR%%/targets/ns_neck/neck_back_gill3.target
+%%DATADIR%%/targets/ns_neck/neck_back_shield.target
+%%DATADIR%%/targets/ns_neck/neck_back_wattle_down.target
+%%DATADIR%%/targets/ns_neck/neck_back_wattle_up.target
+%%DATADIR%%/targets/ns_neck/neck_collar.target
+%%DATADIR%%/targets/ns_neck/neck_collar_down.target
+%%DATADIR%%/targets/ns_neck/neck_disk.target
+%%DATADIR%%/targets/ns_neck/neck_disk_front_large.target
+%%DATADIR%%/targets/ns_neck/neck_disk_front_narrow.target
+%%DATADIR%%/targets/ns_neck/neck_disk_large.target
+%%DATADIR%%/targets/ns_neck/neck_disk_oblique_eyes.target
+%%DATADIR%%/targets/ns_neck/neck_disk_oblique_large.target
+%%DATADIR%%/targets/ns_neck/neck_disk_oblique_narrow.target
+%%DATADIR%%/targets/ns_neck/neck_disk_oblique_point.target
+%%DATADIR%%/targets/ns_neck/neck_extralong.target
+%%DATADIR%%/targets/ns_neck/neck_front_shield.target
+%%DATADIR%%/targets/ns_neck/neck_long_extra.target.corrupted
+%%DATADIR%%/targets/ns_neck/neck_mid_protrunding.target
+%%DATADIR%%/targets/ns_neck/neck_out_extra.target
+%%DATADIR%%/targets/ns_neck/neck_sideways_protrunding.target
+%%DATADIR%%/targets/ns_neck/neck_wattle_center.target
+%%DATADIR%%/targets/ns_neck/neck_wattle_front_up.target
+%%DATADIR%%/targets/ns_neck/neck_wattle_side.target
+%%DATADIR%%/targets/ns_nose/nose_anime1.target
+%%DATADIR%%/targets/ns_nose/nose_anime_no_nostril.target
+%%DATADIR%%/targets/ns_nose/nose_big.target
+%%DATADIR%%/targets/ns_nose/nose_big_forward.target
+%%DATADIR%%/targets/ns_nose/nose_extrabig.target
+%%DATADIR%%/targets/ns_nose/nose_extralittle.target
+%%DATADIR%%/targets/ns_nose/nose_geom_cone.target
+%%DATADIR%%/targets/ns_nose/nose_geom_cube.target
+%%DATADIR%%/targets/ns_nose/nose_geom_cube2.target
+%%DATADIR%%/targets/ns_nose/nose_geom_cubic.target
+%%DATADIR%%/targets/ns_nose/nose_geom_cubic2.target
+%%DATADIR%%/targets/ns_nose/nose_geom_cylinder.target
+%%DATADIR%%/targets/ns_nose/nose_geom_line.target
+%%DATADIR%%/targets/ns_nose/nose_geom_line2.target
+%%DATADIR%%/targets/ns_nose/nose_geom_parallelep.target
+%%DATADIR%%/targets/ns_nose/nose_geom_piramid.target
+%%DATADIR%%/targets/ns_nose/nose_geom_sphere.target
+%%DATADIR%%/targets/ns_nose/nose_geom_triang.target
+%%DATADIR%%/targets/ns_nose/nose_geom_tube.target
+%%DATADIR%%/targets/ns_nose/nose_little.target
+%%DATADIR%%/targets/ns_nose/nose_mars.target
+%%DATADIR%%/targets/ns_nose/nose_mars_no_nostrill.target
+%%DATADIR%%/targets/ns_nose/nose_midle_prominence.target
+%%DATADIR%%/targets/ns_nose/nose_midle_prominence1.target
+%%DATADIR%%/targets/ns_nose/nose_midle_prominence1_in.target
+%%DATADIR%%/targets/ns_nose/nose_midle_prominence_in.target
+%%DATADIR%%/targets/ns_nose/nose_none_no_nostril.target
+%%DATADIR%%/targets/ns_nose/nose_nostril_bull.target
+%%DATADIR%%/targets/ns_nose/nose_nostril_horn.target
+%%DATADIR%%/targets/ns_nose/nose_nostril_moustache.target
+%%DATADIR%%/targets/ns_nose/nose_nostril_none.target
+%%DATADIR%%/targets/ns_nose/nose_nostril_tube.target
+%%DATADIR%%/targets/ns_nose/nose_nostril_turbo.target
+%%DATADIR%%/targets/ns_nose/nose_rhino.target
+%%DATADIR%%/targets/ns_nose/nose_skeleton.target
+%%DATADIR%%/targets/ns_nose/nose_skeleton2.target
+%%DATADIR%%/targets/ns_nose/nose_strange.target
+%%DATADIR%%/targets/ns_nose/nose_up.target
+%%DATADIR%%/targets/ns_nose2/nose_cat.target
+%%DATADIR%%/targets/ns_nose2/nose_cat_flat.target
+%%DATADIR%%/targets/ns_nose2/nose_dog.target
+%%DATADIR%%/targets/ns_nose2/nose_dog_flat.target
+%%DATADIR%%/targets/ns_nose2/nose_dog_large_toon.target
+%%DATADIR%%/targets/ns_nose2/nose_dog_toon.target
+%%DATADIR%%/targets/ns_nose2/nose_dog_toon2.target
+%%DATADIR%%/targets/ns_nose2/nose_elephant.target
+%%DATADIR%%/targets/ns_nose2/nose_elephant_narrow.target
+%%DATADIR%%/targets/ns_nose2/nose_extralong.target
+%%DATADIR%%/targets/ns_nose2/nose_line1.target
+%%DATADIR%%/targets/ns_nose2/nose_line2.target
+%%DATADIR%%/targets/ns_nose2/nose_point_down.target
+%%DATADIR%%/targets/ns_nose2/nose_point_front.target
+%%DATADIR%%/targets/ns_nose2/nose_point_front_long.target
+%%DATADIR%%/targets/ns_nose2/nose_point_sharp_down.target
+%%DATADIR%%/targets/ns_nose2/nose_point_sharp_up.target
+%%DATADIR%%/targets/ns_nose2/nose_shield1.target
+%%DATADIR%%/targets/ns_nose2/nose_shield2.target
+%%DATADIR%%/targets/ns_nose2/nose_tapir.target
+%%DATADIR%%/targets/ns_nose2/nose_tapir_big.target
+%%DATADIR%%/targets/ns_pelvis/1hole_front_center.target
+%%DATADIR%%/targets/ns_pelvis/2holes_back.target
+%%DATADIR%%/targets/ns_pelvis/2holes_back_side_up.target
+%%DATADIR%%/targets/ns_pelvis/2holes_front_side_up.target
+%%DATADIR%%/targets/ns_pelvis/2holes_front_up.target
+%%DATADIR%%/targets/ns_pelvis/abdomen_1hole_back_center_down.target
+%%DATADIR%%/targets/ns_pelvis/abdomen_1hole_back_center_up.target
+%%DATADIR%%/targets/ns_pelvis/abdomen_2holes_back_down.target
+%%DATADIR%%/targets/ns_pelvis/abdomen_2holes_back_up.target
+%%DATADIR%%/targets/ns_pelvis/abdomen_apron_shield.target
+%%DATADIR%%/targets/ns_pelvis/abdomen_back_fin.target
+%%DATADIR%%/targets/ns_pelvis/abdomen_extra_apron_shield.target
+%%DATADIR%%/targets/ns_pelvis/abdomen_mantle_shield.target
+%%DATADIR%%/targets/ns_pelvis/pelvis_back_shield.target
+%%DATADIR%%/targets/ns_pelvis/pelvis_front_shield.target
+%%DATADIR%%/targets/ns_r_cheek/r_cheeck_hamster.target
+%%DATADIR%%/targets/ns_r_cheek/r_cheeck_pincer.target
+%%DATADIR%%/targets/ns_r_cheek/r_cheeck_pincer_big.target
+%%DATADIR%%/targets/ns_r_cheek/r_cheeck_puff_point.target
+%%DATADIR%%/targets/ns_r_cheek/r_cheek_cover_eye.target
+%%DATADIR%%/targets/ns_r_cheek/r_cheek_cover_eye2.target
+%%DATADIR%%/targets/ns_r_cheek/r_cheek_cover_eye3.target
+%%DATADIR%%/targets/ns_r_cheek/r_cheek_geom_quod.target
+%%DATADIR%%/targets/ns_r_cheek/r_cheek_screen_eye.target
+%%DATADIR%%/targets/ns_r_cheek/r_cheek_screen_mouth.target
+%%DATADIR%%/targets/ns_r_cheek/r_cheek_screen_nose.target
+%%DATADIR%%/targets/ns_r_cheek/r_cheek_wattle_down.target
+%%DATADIR%%/targets/ns_r_cheek/r_cheek_wattle_front.target
+%%DATADIR%%/targets/ns_r_cheek/r_cheek_wattle_up.target
+%%DATADIR%%/targets/ns_r_ear/r_ear_bat2.target
%%DATADIR%%/targets/ns_r_ear/r_ear_out_point.target
+%%DATADIR%%/targets/ns_r_ear/r_ear_outer.target
%%DATADIR%%/targets/ns_r_ear/r_ear_paper.target
%%DATADIR%%/targets/ns_r_ear/r_ear_point_ahead.target
%%DATADIR%%/targets/ns_r_ear/r_ear_point_down.target
@@ -1513,6 +5997,7 @@ bin/makehuman
%%DATADIR%%/targets/ns_r_ear/r_ear_puff_moon.target
%%DATADIR%%/targets/ns_r_ear/r_ear_puff_point.target
%%DATADIR%%/targets/ns_r_ear/r_ear_puff_point_down.target
+%%DATADIR%%/targets/ns_r_ear/r_ear_puff_point_down_hole.target
%%DATADIR%%/targets/ns_r_ear/r_ear_puff_point_hook.target
%%DATADIR%%/targets/ns_r_ear/r_ear_puff_prisma.target
%%DATADIR%%/targets/ns_r_ear/r_ear_puff_sharp.target
@@ -1521,15 +6006,22 @@ bin/makehuman
%%DATADIR%%/targets/ns_r_ear/r_ear_puff_sphere3.target
%%DATADIR%%/targets/ns_r_ear/r_ear_rabbit.target
%%DATADIR%%/targets/ns_r_ear/r_ear_rabbit2.target
+%%DATADIR%%/targets/ns_r_ear/r_ear_rabbit3.target
%%DATADIR%%/targets/ns_r_ear/r_ear_rabbit_toon.target
+%%DATADIR%%/targets/ns_r_ear/r_ear_rabbit_toon2.target
%%DATADIR%%/targets/ns_r_ear/r_ear_radar.target
%%DATADIR%%/targets/ns_r_ear/r_ear_radar2.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_roty.target
-%%DATADIR%%/targets/ns_r_ear/r_ear_rotz.target
+%%DATADIR%%/targets/ns_r_ear/r_ear_rot_external.target
+%%DATADIR%%/targets/ns_r_ear/r_ear_rot_vert.target
+%%DATADIR%%/targets/ns_r_ear/r_ear_spak.target
%%DATADIR%%/targets/ns_r_ear/r_ear_spatula.target
%%DATADIR%%/targets/ns_r_ear/r_ear_star2_down2.target
%%DATADIR%%/targets/ns_r_ear/r_ear_star2_up.target
+%%DATADIR%%/targets/ns_r_ear/r_ear_star2_up2.target
%%DATADIR%%/targets/ns_r_ear/r_ear_star3.target
+%%DATADIR%%/targets/ns_r_ear/r_ear_star3_down.target
+%%DATADIR%%/targets/ns_r_ear/r_ear_star3_up.target
+%%DATADIR%%/targets/ns_r_ear/r_ear_star4_down.target
%%DATADIR%%/targets/ns_r_ear/r_ear_star4_up.target
%%DATADIR%%/targets/ns_r_ear/r_ear_star5.target
%%DATADIR%%/targets/ns_r_ear/r_ear_stick.target
@@ -1538,6 +6030,7 @@ bin/makehuman
%%DATADIR%%/targets/ns_r_ear/r_ear_stick_shape.target
%%DATADIR%%/targets/ns_r_ear/r_ear_stick_trian.target
%%DATADIR%%/targets/ns_r_ear/r_ear_trumpet.target
+%%DATADIR%%/targets/ns_r_ear/r_ear_trumpet2.target
%%DATADIR%%/targets/ns_r_ear/r_ear_trumpet3.target
%%DATADIR%%/targets/ns_r_ear/r_ear_wave.target
%%DATADIR%%/targets/ns_r_ear/r_ear_wing_angel.target
@@ -1547,8 +6040,209 @@ bin/makehuman
%%DATADIR%%/targets/ns_r_ear/r_ear_yar.target
%%DATADIR%%/targets/ns_r_ear/r_ear_yod.target
%%DATADIR%%/targets/ns_r_ear/r_ear_yod2.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_back_none.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_bamby.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_bat.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_bell.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_bi_points.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_blend.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_bongo.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_bulb.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_bulb1.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_bulb2.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_bulb3.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_cat.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_cat2.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_cow.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_cow2.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_cow3.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_cow4.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_cow5.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_crater.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_cut.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_cut2.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_cut3.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_demon.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_dog.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_dog2.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_dog3.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_donkey.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_donut.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_donut2.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_dumbo.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_elf.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_fawn.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_flower.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_flower2.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_flower3.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_flower4.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_flower5.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_geom_circle.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_geom_quod.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_geom_triang.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_goat.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_gremlins.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_in_out.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_inner.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_leaf.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_leaf2.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_leaf3.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_little_bear.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_lobe_point_down.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_lobe_point_out.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_long_round.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_mouse.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_mouse_toon.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_mouse_toon_round.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_mouse_toon_triangle.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_move_up.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_none.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_none2.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_none3.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_none4.target
+%%DATADIR%%/targets/ns_r_ear2/r_ear_none5.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_bulb_2extraup.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_bulb_cilinder.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_bulb_cilinder_toon.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_bulb_cube.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_bulb_cube_toon.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_bulb_depth.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_bulb_extraback.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_bulb_extraforward.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_bulb_extraleft.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_bulb_extraright.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_bulb_extraup.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_bulb_height.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_bulb_none.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_bulb_prisma.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_bulb_prisma_toon.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_bulb_tosphere.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_bulb_width.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_monocle_eye_forward.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_monocle_eye_none.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_monocle_eye_none_cone.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_monocle_eye_star.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_monocle_eye_star_in.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_monocle_simple.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_monocle_snail.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_none_cilinder_in.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_none_cube.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_none_cube_in.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_none_flatten.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_none_flatten2.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_none_flatten3.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_none_in.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_none_in1.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_none_in2.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_none_in3.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_none_in4.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_none_in5.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_none_in6.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_none_in7.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_none_in8.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_none_in9.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_none_out.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_plica semilunaris_fantasy.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_plica semilunaris_half_left.target
+%%DATADIR%%/targets/ns_r_eye/r_eye_plica semilunaris_half_right.target
+%%DATADIR%%/targets/ns_r_eye/r_eyelashes_lower_extralong.target
+%%DATADIR%%/targets/ns_r_eye/r_eyelashes_upper_extralong.target
+%%DATADIR%%/targets/ns_r_eye/r_eyelashes_upper_extralong_down.target
+%%DATADIR%%/targets/ns_r_eye/r_eyelashes_upper_extralong_forward.target
+%%DATADIR%%/targets/ns_r_foot/r_feet_mermaid1.target
+%%DATADIR%%/targets/ns_r_foot/r_feet_mermaid2.target
+%%DATADIR%%/targets/ns_r_foot/r_feet_mermaid3.target
+%%DATADIR%%/targets/ns_r_foot/r_feet_mermaid4.target
+%%DATADIR%%/targets/ns_r_foot/r_feet_mermaid5.target
+%%DATADIR%%/targets/ns_r_foot/r_feet_mermaid6.target
+%%DATADIR%%/targets/ns_r_foot/r_foot_big.target
+%%DATADIR%%/targets/ns_r_foot/r_foot_big_finger.target
+%%DATADIR%%/targets/ns_r_foot/r_foot_big_finger_large.target
+%%DATADIR%%/targets/ns_r_foot/r_foot_bignail.target
+%%DATADIR%%/targets/ns_r_foot/r_foot_bigtoe.target
+%%DATADIR%%/targets/ns_r_foot/r_foot_bigtoe_ape.target
%%DATADIR%%/targets/ns_r_foot/r_foot_fin5.target
-%%DATADIR%%/targets/ns_r_hand/r_hand_2_fingers_basic.target
+%%DATADIR%%/targets/ns_r_foot/r_foot_finger1_a_none_nail.target
+%%DATADIR%%/targets/ns_r_foot/r_foot_finger1_alibaba.target
+%%DATADIR%%/targets/ns_r_foot/r_foot_finger1_bignail.target
+%%DATADIR%%/targets/ns_r_foot/r_foot_finger1_cobra.target
+%%DATADIR%%/targets/ns_r_foot/r_foot_finger1_point.target
+%%DATADIR%%/targets/ns_r_foot/r_foot_finger2.target
+%%DATADIR%%/targets/ns_r_foot/r_foot_finger2_alibaba2.target
+%%DATADIR%%/targets/ns_r_foot/r_foot_finger2_bignail.target
+%%DATADIR%%/targets/ns_r_foot/r_foot_finger2_bigtop.target
+%%DATADIR%%/targets/ns_r_foot/r_foot_finger2_none_nail.target
+%%DATADIR%%/targets/ns_r_foot/r_foot_finger3.target
+%%DATADIR%%/targets/ns_r_foot/r_foot_finger3_bignail.target
+%%DATADIR%%/targets/ns_r_foot/r_foot_finger3_bigtop.target
+%%DATADIR%%/targets/ns_r_foot/r_foot_finger3_none_nail.target
+%%DATADIR%%/targets/ns_r_foot/r_foot_finger3_point.target
+%%DATADIR%%/targets/ns_r_foot/r_foot_finger4.target
+%%DATADIR%%/targets/ns_r_foot/r_foot_finger4_bigtop.target
+%%DATADIR%%/targets/ns_r_foot/r_foot_finger4_none_nail.target
+%%DATADIR%%/targets/ns_r_foot/r_foot_finger4_point.target
+%%DATADIR%%/targets/ns_r_foot/r_foot_finger_down.target
+%%DATADIR%%/targets/ns_r_foot/r_foot_finger_down2.target
+%%DATADIR%%/targets/ns_r_foot/r_foot_giant.target
+%%DATADIR%%/targets/ns_r_foot/r_foot_gill1.target
+%%DATADIR%%/targets/ns_r_foot/r_foot_gill2.target
+%%DATADIR%%/targets/ns_r_foot/r_foot_nail_sharp.target
+%%DATADIR%%/targets/ns_r_foot/r_foot_nobody.target
+%%DATADIR%%/targets/ns_r_foot/r_foot_none.target
+%%DATADIR%%/targets/ns_r_foot/r_foot_point.target
+%%DATADIR%%/targets/ns_r_foot/r_foot_smooth.target
+%%DATADIR%%/targets/ns_r_foot/r_foot_total_smooth.target
+%%DATADIR%%/targets/ns_r_foot/r_foot_upper_smooth.target
+%%DATADIR%%/targets/ns_r_foot2/r_foot_lower_flat_down.target
+%%DATADIR%%/targets/ns_r_foot2/r_foot_lower_thin_down.target
+%%DATADIR%%/targets/ns_r_foot2/r_foot_wing_back.target
+%%DATADIR%%/targets/ns_r_foot2/r_foot_wing_lateral.target
+%%DATADIR%%/targets/ns_r_foot2/r_foot_wing_side.target
+%%DATADIR%%/targets/ns_r_foot2/r_foot_wing_upper.target
+%%DATADIR%%/targets/ns_r_foot2/r_paw_fauno.target
+%%DATADIR%%/targets/ns_r_foot2/r_paw_fauno_base.target
+%%DATADIR%%/targets/ns_r_foot2/r_paw_nail.target
+%%DATADIR%%/targets/ns_r_foot2/r_paw_nail2.target
+%%DATADIR%%/targets/ns_r_foot2/r_paw_nail2_camel.target
+%%DATADIR%%/targets/ns_r_foot2/r_paw_nail2_fauno.target
+%%DATADIR%%/targets/ns_r_foot2/r_paw_nail2_large.target
+%%DATADIR%%/targets/ns_r_foot2/r_paw_nail2_long.target
+%%DATADIR%%/targets/ns_r_foot2/r_paw_nail2_normal.target
+%%DATADIR%%/targets/ns_r_foot2/r_paw_nail2_sharp.target
+%%DATADIR%%/targets/ns_r_foot2/r_paw_nail2_taurus.target
+%%DATADIR%%/targets/ns_r_foot2/r_paw_nail3_dino.target
+%%DATADIR%%/targets/ns_r_foot2/r_paw_nail3_dino_long.target
+%%DATADIR%%/targets/ns_r_foot2/r_paw_nail3_long.target
+%%DATADIR%%/targets/ns_r_foot2/r_paw_nail3_normal.target
+%%DATADIR%%/targets/ns_r_foot2/r_paw_nail3_predatory.target
+%%DATADIR%%/targets/ns_r_foot2/r_paw_nail3_sharp.target
+%%DATADIR%%/targets/ns_r_foot2/r_paw_nail4_dino.target
+%%DATADIR%%/targets/ns_r_foot2/r_paw_nail4_dino_long.target
+%%DATADIR%%/targets/ns_r_foot2/r_paw_nail4_long.target
+%%DATADIR%%/targets/ns_r_foot2/r_paw_nail4_normal.target
+%%DATADIR%%/targets/ns_r_foot2/r_paw_nail4_predatory.target
+%%DATADIR%%/targets/ns_r_foot2/r_paw_nail4_sharp.target
+%%DATADIR%%/targets/ns_r_foot2/r_paw_nail_horse.target
+%%DATADIR%%/targets/ns_r_foot2/r_paw_nail_large.target
+%%DATADIR%%/targets/ns_r_foot2/r_paw_nail_long.target
+%%DATADIR%%/targets/ns_r_foot2/r_paw_nail_sharp.target
+%%DATADIR%%/targets/ns_r_foot2/r_paw_spine1.target
+%%DATADIR%%/targets/ns_r_foot2/r_paw_spine2.target
+%%DATADIR%%/targets/ns_r_foot2/r_paw_spine3.target
+%%DATADIR%%/targets/ns_r_foot2/r_paw_spine4.target
+%%DATADIR%%/targets/ns_r_forefinger/r_extralong_forefinger.target
+%%DATADIR%%/targets/ns_r_forefinger/r_hand_aculea_forefinger.target
+%%DATADIR%%/targets/ns_r_forefinger/r_hand_aculea_forefinger_sideways.target
+%%DATADIR%%/targets/ns_r_forefinger/r_nail_bifid_forefinger.target
+%%DATADIR%%/targets/ns_r_forefinger/r_nail_claw_forefinger.target
+%%DATADIR%%/targets/ns_r_forefinger/r_nail_comma_forefinger.target
+%%DATADIR%%/targets/ns_r_forefinger/r_nail_large_forefinger.target
+%%DATADIR%%/targets/ns_r_forefinger/r_nail_sharp_forefinger.target
+%%DATADIR%%/targets/ns_r_forefinger/r_nail_sphere_forefinger.target
+%%DATADIR%%/targets/ns_r_forefinger/r_nail_thai_forefinger.target
+%%DATADIR%%/targets/ns_r_forefinger/r_nail_twist_forefinger.target
+%%DATADIR%%/targets/ns_r_hand/r_hand_1hole_up1.target
+%%DATADIR%%/targets/ns_r_hand/r_hand_1hole_up2.target
%%DATADIR%%/targets/ns_r_hand/r_hand_2_fingers_big_top.target
%%DATADIR%%/targets/ns_r_hand/r_hand_2_fingers_point.target
%%DATADIR%%/targets/ns_r_hand/r_hand_2_fingers_thin.target
@@ -1561,99 +6255,504 @@ bin/makehuman
%%DATADIR%%/targets/ns_r_hand/r_hand_4_fingers.target
%%DATADIR%%/targets/ns_r_hand/r_hand_4_fingers_big_top.target
%%DATADIR%%/targets/ns_r_hand/r_hand_4_fingers_no_nail.target
-%%DATADIR%%/targets/ns_r_hand/r_hand_4_fingers_point.target
-%%DATADIR%%/targets/ns_r_hand/r_hand_4_fingers_sharp.target
+%%DATADIR%%/targets/ns_r_hand/r_hand_4_fingers_sharpen.target
%%DATADIR%%/targets/ns_r_hand/r_hand_alibaba.target
%%DATADIR%%/targets/ns_r_hand/r_hand_arthritis.target
+%%DATADIR%%/targets/ns_r_hand/r_hand_back_blade.target
%%DATADIR%%/targets/ns_r_hand/r_hand_basic.target
+%%DATADIR%%/targets/ns_r_hand/r_hand_big.target
%%DATADIR%%/targets/ns_r_hand/r_hand_big_top.target
%%DATADIR%%/targets/ns_r_hand/r_hand_but.target
%%DATADIR%%/targets/ns_r_hand/r_hand_cone.target
%%DATADIR%%/targets/ns_r_hand/r_hand_cube.target
-%%DATADIR%%/targets/ns_r_hand/r_hand_cube_no_nail.target
%%DATADIR%%/targets/ns_r_hand/r_hand_cylinder.target
%%DATADIR%%/targets/ns_r_hand/r_hand_cylinder_cut.target
-%%DATADIR%%/targets/ns_r_hand/r_hand_cylinder_no_nail.target
-%%DATADIR%%/targets/ns_r_hand/r_hand_fingers_long.target
+%%DATADIR%%/targets/ns_r_hand/r_hand_extrascrawny.target
%%DATADIR%%/targets/ns_r_hand/r_hand_flat_down.target
%%DATADIR%%/targets/ns_r_hand/r_hand_geco.target
+%%DATADIR%%/targets/ns_r_hand/r_hand_giant.target
%%DATADIR%%/targets/ns_r_hand/r_hand_interfingers.target
%%DATADIR%%/targets/ns_r_hand/r_hand_knunkle.target
%%DATADIR%%/targets/ns_r_hand/r_hand_lagoon.target
+%%DATADIR%%/targets/ns_r_hand/r_hand_mid_blade.target
%%DATADIR%%/targets/ns_r_hand/r_hand_mitten_no_nail.target
%%DATADIR%%/targets/ns_r_hand/r_hand_mitten_shape.target
%%DATADIR%%/targets/ns_r_hand/r_hand_mitten_sharp.target
-%%DATADIR%%/targets/ns_r_hand/r_hand_no_nail.target
-%%DATADIR%%/targets/ns_r_hand/r_hand_no_nail2.target
+%%DATADIR%%/targets/ns_r_hand/r_hand_nobody.target
%%DATADIR%%/targets/ns_r_hand/r_hand_none.target
-%%DATADIR%%/targets/ns_r_hand/r_hand_ogiva.target
-%%DATADIR%%/targets/ns_r_hand/r_hand_outline_flat.target
+%%DATADIR%%/targets/ns_r_hand/r_hand_palm_blade.target
%%DATADIR%%/targets/ns_r_hand/r_hand_piovra.target
%%DATADIR%%/targets/ns_r_hand/r_hand_point.target
%%DATADIR%%/targets/ns_r_hand/r_hand_point_long_basic.target
%%DATADIR%%/targets/ns_r_hand/r_hand_prisma.target
-%%DATADIR%%/targets/ns_r_hand/r_hand_prisma_cut.target
-%%DATADIR%%/targets/ns_r_hand/r_hand_prisma_no_nail_cut.target
%%DATADIR%%/targets/ns_r_hand/r_hand_robot.target
-%%DATADIR%%/targets/ns_r_hand/r_hand_root.target
-%%DATADIR%%/targets/ns_r_hand/r_hand_thin_fingers.target
+%%DATADIR%%/targets/ns_r_hand/r_hand_sideways_blade.target
+%%DATADIR%%/targets/ns_r_hand/r_hand_taurus_mitten.target
%%DATADIR%%/targets/ns_r_hand/r_hand_toon.target
%%DATADIR%%/targets/ns_r_hand/r_hand_trumpet.target
-%%DATADIR%%/targets/ns_r_hand/r_nail_claw.target
-%%DATADIR%%/targets/ns_r_hand/r_nail_comma.target
-%%DATADIR%%/targets/ns_r_hand/r_nail_sphere.target
-%%DATADIR%%/targets/ns_r_hand/r_nail_thai.target
-%%DATADIR%%/targets/ns_r_hand/r_nail_twist.target
+%%DATADIR%%/targets/ns_r_littlefinger/r_extralong_littlefinger.target
+%%DATADIR%%/targets/ns_r_littlefinger/r_hand_aculea_littlefinger.target
+%%DATADIR%%/targets/ns_r_littlefinger/r_hand_aculea_littlefinger_sideways.target
+%%DATADIR%%/targets/ns_r_littlefinger/r_nail_bifid_littlefinger.target
+%%DATADIR%%/targets/ns_r_littlefinger/r_nail_claw_littlefinger.target
+%%DATADIR%%/targets/ns_r_littlefinger/r_nail_comma_littlefinger.target
+%%DATADIR%%/targets/ns_r_littlefinger/r_nail_large_littlefinger.target
+%%DATADIR%%/targets/ns_r_littlefinger/r_nail_sharp_littlefinger.target
+%%DATADIR%%/targets/ns_r_littlefinger/r_nail_sphere_littlefinger.target
+%%DATADIR%%/targets/ns_r_littlefinger/r_nail_thai_littlefinger.target
+%%DATADIR%%/targets/ns_r_littlefinger/r_nail_twist_littlefinger.target
+%%DATADIR%%/targets/ns_r_lower_arm/r_lower_arm_1hole_back.target
+%%DATADIR%%/targets/ns_r_lower_arm/r_lower_arm_1hole_down.target
+%%DATADIR%%/targets/ns_r_lower_arm/r_lower_arm_1hole_front.target
+%%DATADIR%%/targets/ns_r_lower_arm/r_lower_arm_1hole_top.target
+%%DATADIR%%/targets/ns_r_lower_arm/r_lower_arm_extralong.target
+%%DATADIR%%/targets/ns_r_lower_arm/r_lower_arm_extrascrawny.target
+%%DATADIR%%/targets/ns_r_lower_arm/r_lower_arm_fold_glove1.target
+%%DATADIR%%/targets/ns_r_lower_arm/r_lower_arm_fold_glove2.target
+%%DATADIR%%/targets/ns_r_lower_arm/r_lower_arm_fold_glove3.target
+%%DATADIR%%/targets/ns_r_lower_arm/r_lower_arm_fold_glove4.target
+%%DATADIR%%/targets/ns_r_lower_arm/r_lower_arm_fold_sleeve1.target
+%%DATADIR%%/targets/ns_r_lower_arm/r_lower_arm_fold_sleeve2.target
+%%DATADIR%%/targets/ns_r_lower_arm/r_lower_arm_half.target
+%%DATADIR%%/targets/ns_r_lower_arm/r_lower_arm_nobody.target
+%%DATADIR%%/targets/ns_r_lower_arm/r_lower_arm_none.target
+%%DATADIR%%/targets/ns_r_lower_arm/r_lower_arm_shield.target
+%%DATADIR%%/targets/ns_r_lower_arm/r_lower_arm_temptacle.target
+%%DATADIR%%/targets/ns_r_lower_arm/r_lower_arm_turbo.target
+%%DATADIR%%/targets/ns_r_lower_arm/r_lower_arm_turbo_sharp.target
+%%DATADIR%%/targets/ns_r_lower_leg/r_leg_genius.target
+%%DATADIR%%/targets/ns_r_lower_leg/r_leg_lower_genius.target
+%%DATADIR%%/targets/ns_r_lower_leg/r_lower_1hole_back.target
+%%DATADIR%%/targets/ns_r_lower_leg/r_lower_1hole_front_down.target
+%%DATADIR%%/targets/ns_r_lower_leg/r_lower_1hole_front_up.target
+%%DATADIR%%/targets/ns_r_lower_leg/r_lower_1hole_side.target
+%%DATADIR%%/targets/ns_r_lower_leg/r_lower_1hole_side_in.target
+%%DATADIR%%/targets/ns_r_lower_leg/r_lower_knee_extralong.target
+%%DATADIR%%/targets/ns_r_lower_leg/r_lower_leg_back_shield.target
+%%DATADIR%%/targets/ns_r_lower_leg/r_lower_leg_extralong.target
+%%DATADIR%%/targets/ns_r_lower_leg/r_lower_leg_extrascrawny.target
+%%DATADIR%%/targets/ns_r_lower_leg/r_lower_leg_fold_boot1.target
+%%DATADIR%%/targets/ns_r_lower_leg/r_lower_leg_fold_boot2.target
+%%DATADIR%%/targets/ns_r_lower_leg/r_lower_leg_fold_tube1.target
+%%DATADIR%%/targets/ns_r_lower_leg/r_lower_leg_fold_tube2.target
+%%DATADIR%%/targets/ns_r_lower_leg/r_lower_leg_fold_tube_puff.target
+%%DATADIR%%/targets/ns_r_lower_leg/r_lower_leg_front_shield.target
+%%DATADIR%%/targets/ns_r_lower_leg/r_lower_leg_half.target
+%%DATADIR%%/targets/ns_r_lower_leg/r_lower_leg_nobody.target
+%%DATADIR%%/targets/ns_r_lower_leg/r_lower_leg_none.target
+%%DATADIR%%/targets/ns_r_lower_leg/r_lower_leg_shield.target
+%%DATADIR%%/targets/ns_r_lower_leg/r_lower_leg_turbo.target
+%%DATADIR%%/targets/ns_r_middlefinger/r_extralong_middlefinger.target
+%%DATADIR%%/targets/ns_r_middlefinger/r_hand_aculea_middlefinger.target
+%%DATADIR%%/targets/ns_r_middlefinger/r_hand_aculea_middlefinger_sideways.target
+%%DATADIR%%/targets/ns_r_middlefinger/r_nail_bifid_middlefinger.target
+%%DATADIR%%/targets/ns_r_middlefinger/r_nail_claw_middlefinger.target
+%%DATADIR%%/targets/ns_r_middlefinger/r_nail_comma_middlefinger.target
+%%DATADIR%%/targets/ns_r_middlefinger/r_nail_large_middlefinger.target
+%%DATADIR%%/targets/ns_r_middlefinger/r_nail_sharp_middlefinger.target
+%%DATADIR%%/targets/ns_r_middlefinger/r_nail_sphere_middlefinger.target
+%%DATADIR%%/targets/ns_r_middlefinger/r_nail_thai_middlefinger.target
+%%DATADIR%%/targets/ns_r_middlefinger/r_nail_twist_middlefinger.target
+%%DATADIR%%/targets/ns_r_pollex/r_extralong_pollex.target
+%%DATADIR%%/targets/ns_r_pollex/r_nail_bifid_pollex.target
+%%DATADIR%%/targets/ns_r_pollex/r_nail_claw_pollex.target
+%%DATADIR%%/targets/ns_r_pollex/r_nail_comma_pollex.target
+%%DATADIR%%/targets/ns_r_pollex/r_nail_large_pollex.target
+%%DATADIR%%/targets/ns_r_pollex/r_nail_sharp_pollex.target
+%%DATADIR%%/targets/ns_r_pollex/r_nail_sphere_pollex.target
+%%DATADIR%%/targets/ns_r_pollex/r_nail_thai_pollex.target
+%%DATADIR%%/targets/ns_r_ringfinger/r_extralong_ringfinger.target
+%%DATADIR%%/targets/ns_r_ringfinger/r_hand_aculea_ringfinger.target
+%%DATADIR%%/targets/ns_r_ringfinger/r_hand_aculea_ringfinger_sideways.target
+%%DATADIR%%/targets/ns_r_ringfinger/r_nail_bifid_ringfinger.target
+%%DATADIR%%/targets/ns_r_ringfinger/r_nail_claw_ringfinger.target
+%%DATADIR%%/targets/ns_r_ringfinger/r_nail_comma_ringfinger.target
+%%DATADIR%%/targets/ns_r_ringfinger/r_nail_large_ringfinger.target
+%%DATADIR%%/targets/ns_r_ringfinger/r_nail_sharp_ringfinger.target
+%%DATADIR%%/targets/ns_r_ringfinger/r_nail_sphere_ringfinger.target
+%%DATADIR%%/targets/ns_r_ringfinger/r_nail_thai_ringfinger.target
+%%DATADIR%%/targets/ns_r_ringfinger/r_nail_twist_ringfinger.target
+%%DATADIR%%/targets/ns_r_shoulder/r_shoulder_double.target
+%%DATADIR%%/targets/ns_r_shoulder/r_shoulder_point.target
+%%DATADIR%%/targets/ns_r_shoulder/r_shoulder_shield.target
+%%DATADIR%%/targets/ns_r_upper_arm/r_upper_arm_1hole_back_up.target
+%%DATADIR%%/targets/ns_r_upper_arm/r_upper_arm_1hole_down.target
+%%DATADIR%%/targets/ns_r_upper_arm/r_upper_arm_1hole_front.target
+%%DATADIR%%/targets/ns_r_upper_arm/r_upper_arm_1hole_top_down.target
+%%DATADIR%%/targets/ns_r_upper_arm/r_upper_arm_1hole_top_up.target
+%%DATADIR%%/targets/ns_r_upper_arm/r_upper_arm_extralong.target
+%%DATADIR%%/targets/ns_r_upper_arm/r_upper_arm_extranone.target
+%%DATADIR%%/targets/ns_r_upper_arm/r_upper_arm_extrascrawny.target
+%%DATADIR%%/targets/ns_r_upper_arm/r_upper_arm_fold_glove1.target
+%%DATADIR%%/targets/ns_r_upper_arm/r_upper_arm_fold_glove2.target
+%%DATADIR%%/targets/ns_r_upper_arm/r_upper_arm_fold_sleeve1.target
+%%DATADIR%%/targets/ns_r_upper_arm/r_upper_arm_fold_sleeve2.target
+%%DATADIR%%/targets/ns_r_upper_arm/r_upper_arm_fold_sleeve_puff.target
+%%DATADIR%%/targets/ns_r_upper_arm/r_upper_arm_half.target
+%%DATADIR%%/targets/ns_r_upper_arm/r_upper_arm_nobody.target
+%%DATADIR%%/targets/ns_r_upper_arm/r_upper_arm_none.target
+%%DATADIR%%/targets/ns_r_upper_arm/r_upper_arm_turbo.target
+%%DATADIR%%/targets/ns_r_upper_arm/r_upper_arm_wing.target
+%%DATADIR%%/targets/ns_r_upper_leg/leg_genius.target
+%%DATADIR%%/targets/ns_r_upper_leg/leg_mermaid_base.target
+%%DATADIR%%/targets/ns_r_upper_leg/leg_mono.target
+%%DATADIR%%/targets/ns_r_upper_leg/leg_mono_left.target
+%%DATADIR%%/targets/ns_r_upper_leg/leg_mono_right.target
+%%DATADIR%%/targets/ns_r_upper_leg/r_upper_1hole_back_down.target
+%%DATADIR%%/targets/ns_r_upper_leg/r_upper_1hole_back_mid.target
+%%DATADIR%%/targets/ns_r_upper_leg/r_upper_1hole_back_up.target
+%%DATADIR%%/targets/ns_r_upper_leg/r_upper_1hole_front_down.target
+%%DATADIR%%/targets/ns_r_upper_leg/r_upper_1hole_front_mid.target
+%%DATADIR%%/targets/ns_r_upper_leg/r_upper_1hole_front_up.target
+%%DATADIR%%/targets/ns_r_upper_leg/r_upper_1hole_side_down.target
+%%DATADIR%%/targets/ns_r_upper_leg/r_upper_1hole_side_mid.target
+%%DATADIR%%/targets/ns_r_upper_leg/r_upper_1hole_side_up.target
+%%DATADIR%%/targets/ns_r_upper_leg/r_upper_gill1.target
+%%DATADIR%%/targets/ns_r_upper_leg/r_upper_gill2.target
+%%DATADIR%%/targets/ns_r_upper_leg/r_upper_gill3.target
+%%DATADIR%%/targets/ns_r_upper_leg/r_upper_leg_extranone.target
+%%DATADIR%%/targets/ns_r_upper_leg/r_upper_leg_extrascrawny.target
+%%DATADIR%%/targets/ns_r_upper_leg/r_upper_leg_fold_boot1.target
+%%DATADIR%%/targets/ns_r_upper_leg/r_upper_leg_fold_boot2.target
+%%DATADIR%%/targets/ns_r_upper_leg/r_upper_leg_fold_tube1.target
+%%DATADIR%%/targets/ns_r_upper_leg/r_upper_leg_fold_tube2.target
+%%DATADIR%%/targets/ns_r_upper_leg/r_upper_leg_half.target
+%%DATADIR%%/targets/ns_r_upper_leg/r_upper_leg_nobody.target
+%%DATADIR%%/targets/ns_r_upper_leg/r_upper_leg_none.target
+%%DATADIR%%/targets/ns_r_upper_leg/r_upper_leg_side_shield.target
+%%DATADIR%%/targets/ns_teeth/teeth_alien.target
+%%DATADIR%%/targets/ns_teeth/teeth_basic.target
+%%DATADIR%%/targets/ns_teeth/teeth_basic_cilinder.target
+%%DATADIR%%/targets/ns_teeth/teeth_basic_knife.target
+%%DATADIR%%/targets/ns_teeth/teeth_basic_point.target
+%%DATADIR%%/targets/ns_teeth/teeth_basic_sharp.target
+%%DATADIR%%/targets/ns_teeth/teeth_basic_thin.target
+%%DATADIR%%/targets/ns_teeth/teeth_big_incisive.target
+%%DATADIR%%/targets/ns_teeth/teeth_cannibal.target
+%%DATADIR%%/targets/ns_teeth/teeth_cartoon.target
+%%DATADIR%%/targets/ns_teeth/teeth_extralong.target
+%%DATADIR%%/targets/ns_teeth/teeth_fang_top.target
+%%DATADIR%%/targets/ns_teeth/teeth_funny1.target
+%%DATADIR%%/targets/ns_teeth/teeth_funny2.target
+%%DATADIR%%/targets/ns_teeth/teeth_gengivite.target
+%%DATADIR%%/targets/ns_teeth/teeth_gum_monster.target
+%%DATADIR%%/targets/ns_teeth/teeth_gum_narrow.target
+%%DATADIR%%/targets/ns_teeth/teeth_gum_out.target
+%%DATADIR%%/targets/ns_teeth/teeth_gum_up.target
+%%DATADIR%%/targets/ns_teeth/teeth_imperfect.target
+%%DATADIR%%/targets/ns_teeth/teeth_kriss.target
+%%DATADIR%%/targets/ns_teeth/teeth_monster1.target
+%%DATADIR%%/targets/ns_teeth/teeth_monster2.target
+%%DATADIR%%/targets/ns_teeth/teeth_monster3.target
+%%DATADIR%%/targets/ns_teeth/teeth_monster4.target
+%%DATADIR%%/targets/ns_teeth/teeth_monster5.target
+%%DATADIR%%/targets/ns_teeth/teeth_monster6.target
+%%DATADIR%%/targets/ns_teeth/teeth_murene.target
+%%DATADIR%%/targets/ns_teeth/teeth_nosferatu.target
+%%DATADIR%%/targets/ns_teeth/teeth_perfect.target
+%%DATADIR%%/targets/ns_teeth/teeth_piovra.target
+%%DATADIR%%/targets/ns_teeth/teeth_pirana.target
+%%DATADIR%%/targets/ns_teeth/teeth_predator.target
+%%DATADIR%%/targets/ns_teeth/teeth_scarus.target
+%%DATADIR%%/targets/ns_teeth/teeth_shark.target
+%%DATADIR%%/targets/ns_teeth/teeth_skull.target
+%%DATADIR%%/targets/ns_teeth/teeth_smooth_palate.target
+%%DATADIR%%/targets/ns_teeth/teeth_sphere.target
+%%DATADIR%%/targets/ns_teeth/teeth_trap.target
+%%DATADIR%%/targets/ns_teeth/teeth_vampire.target
+%%DATADIR%%/targets/ns_teeth/teeth_vampire1.target
+%%DATADIR%%/targets/ns_teeth/teeth_vampire2.target
+%%DATADIR%%/targets/ns_teeth/teeth_vampire3.target
+%%DATADIR%%/targets/ns_teeth/teeth_window.target
+%%DATADIR%%/targets/ns_teeth/teeth_xfile1.target
+%%DATADIR%%/targets/ns_teeth/teeth_xfile2.target
+%%DATADIR%%/targets/ns_tongue/tongue_.target
+%%DATADIR%%/targets/ns_tongue/tongue_base.target
+%%DATADIR%%/targets/ns_tongue/tongue_bifid.target
+%%DATADIR%%/targets/ns_tongue/tongue_bifid2.target
+%%DATADIR%%/targets/ns_tongue/tongue_butterfly.target
+%%DATADIR%%/targets/ns_tongue/tongue_camaleon.target
+%%DATADIR%%/targets/ns_tongue/tongue_carpet.target
+%%DATADIR%%/targets/ns_tongue/tongue_crest.target
+%%DATADIR%%/targets/ns_tongue/tongue_cut.target
+%%DATADIR%%/targets/ns_tongue/tongue_cut_real.target
+%%DATADIR%%/targets/ns_tongue/tongue_cut_real2.target
+%%DATADIR%%/targets/ns_tongue/tongue_delfin.target
+%%DATADIR%%/targets/ns_tongue/tongue_extrasharp.target
+%%DATADIR%%/targets/ns_tongue/tongue_flat.target
+%%DATADIR%%/targets/ns_tongue/tongue_geom_cone.target
+%%DATADIR%%/targets/ns_tongue/tongue_geom_cube.target
+%%DATADIR%%/targets/ns_tongue/tongue_geom_parallelepiped.target
+%%DATADIR%%/targets/ns_tongue/tongue_geom_piramid.target
+%%DATADIR%%/targets/ns_tongue/tongue_geom_prism.target
+%%DATADIR%%/targets/ns_tongue/tongue_geom_round.target
+%%DATADIR%%/targets/ns_tongue/tongue_geom_triangular.target
+%%DATADIR%%/targets/ns_tongue/tongue_kaly.target
+%%DATADIR%%/targets/ns_tongue/tongue_leaf.target
+%%DATADIR%%/targets/ns_tongue/tongue_none.target
+%%DATADIR%%/targets/ns_tongue/tongue_point.target
+%%DATADIR%%/targets/ns_tongue/tongue_puff.target
+%%DATADIR%%/targets/ns_tongue/tongue_smooth.target
+%%DATADIR%%/targets/ns_tongue/tongue_tube.target
+%%DATADIR%%/targets/ns_tongue/tongue_tube2.target
+%%DATADIR%%/targets/ns_tongue/tongue_tube3.target
+%%DATADIR%%/targets/ns_tongue/tongue_wave.target
+%%DATADIR%%/targets/ns_torso/torso_apron_shield.target
+%%DATADIR%%/targets/ns_torso/torso_apron_shield_up.target
+%%DATADIR%%/targets/ns_torso/torso_back_2point.target
+%%DATADIR%%/targets/ns_torso/torso_back_dragon.target
+%%DATADIR%%/targets/ns_torso/torso_back_dragon2.target
+%%DATADIR%%/targets/ns_torso/torso_back_dragon_in.target
+%%DATADIR%%/targets/ns_torso/torso_back_fin.target
+%%DATADIR%%/targets/ns_torso/torso_back_gill1.target
+%%DATADIR%%/targets/ns_torso/torso_back_gill2.target
+%%DATADIR%%/targets/ns_torso/torso_back_gill3.target
+%%DATADIR%%/targets/ns_torso/torso_back_none_hole.target
+%%DATADIR%%/targets/ns_torso/torso_back_point.target
+%%DATADIR%%/targets/ns_torso/torso_back_shield.target
+%%DATADIR%%/targets/ns_torso/torso_back_turtle.target
+%%DATADIR%%/targets/ns_torso/torso_backward.target
+%%DATADIR%%/targets/ns_torso/torso_forward.target.corrupted
+%%DATADIR%%/targets/ns_torso/torso_front_gill1.target
+%%DATADIR%%/targets/ns_torso/torso_front_gill2.target
+%%DATADIR%%/targets/ns_torso/torso_front_gill3.target
+%%DATADIR%%/targets/ns_torso/torso_front_shield.target
+%%DATADIR%%/targets/ns_torso/torso_halfbody_down.target
+%%DATADIR%%/targets/ns_torso/torso_halfbody_up.target
+%%DATADIR%%/targets/ns_torso/torso_hunch_left.target
+%%DATADIR%%/targets/ns_torso/torso_hunch_right.target
+%%DATADIR%%/targets/ns_torso/torso_kiphosis.target
+%%DATADIR%%/targets/ns_torso/torso_mantle_shield_down.target
+%%DATADIR%%/targets/ns_torso/torso_mantle_shield_up.target
+%%DATADIR%%/targets/ns_torso/torso_nipple_base_none.target
+%%DATADIR%%/targets/ns_torso/torso_nipple_base_sharp.target
+%%DATADIR%%/targets/ns_torso/torso_nipple_temptacle.target
+%%DATADIR%%/targets/ns_torso/torso_side_gill1.target
+%%DATADIR%%/targets/ns_torso/torso_side_gill2.target
+%%DATADIR%%/targets/ns_torso/torso_side_gill3.target
+%%DATADIR%%/targets/ns_torso/torso_side_gill4.target
+%%DATADIR%%/targets/ns_torso/torsoholr.target
+%%DATADIR%%/targets/ns_torso2/back_gash.target
+%%DATADIR%%/targets/ns_torso2/pectoral_muscular_nipple_none.target
+%%DATADIR%%/targets/ns_torso2/targets_female_nipple_breast_big_almost_round_none.target
+%%DATADIR%%/targets/ns_torso2/targets_female_nipple_breast_big_natural_none.target
+%%DATADIR%%/targets/ns_torso2/targets_female_nipple_breast_medium_none.target
+%%DATADIR%%/targets/ns_torso2/torso_1hole_back_center.target
+%%DATADIR%%/targets/ns_torso2/torso_1hole_back_center_mid.target
+%%DATADIR%%/targets/ns_torso2/torso_1hole_front_center_up.target
+%%DATADIR%%/targets/ns_torso2/torso_2hole_front_side_down.target
+%%DATADIR%%/targets/ns_torso2/torso_2hole_side_back_up.target
+%%DATADIR%%/targets/ns_torso2/torso_2hole_side_front_up.target
+%%DATADIR%%/targets/ns_torso2/torso_2holes_back_down.target
+%%DATADIR%%/targets/ns_torso2/torso_2holes_back_mid.target
+%%DATADIR%%/targets/ns_torso2/torso_2holes_back_side.target
+%%DATADIR%%/targets/ns_torso2/torso_2holes_back_up.target
+%%DATADIR%%/targets/ns_torso2/torso_2holes_front_center_down.target
+%%DATADIR%%/targets/ns_torso2/torso_2holes_front_center_up.target
+%%DATADIR%%/targets/ns_torso2/torso_2holes_front_side_down.target
+%%DATADIR%%/targets/ns_torso2/torso_2holes_front_top.target
+%%DATADIR%%/targets/ns_torso2/torso_2holes_front_up.target
+%%DATADIR%%/targets/ns_torso2/torso_scapula_backward.target
+%%DATADIR%%/targets/ns_torso2/torso_scapula_point_backward.target
+%%DATADIR%%/targets/ns_torso2/torso_scapula_point_down.target
+%%DATADIR%%/targets/ns_torso2/torso_scapula_point_up.target
%%DATADIR%%/targets/pelvis/erectors_muscular.target
+%%DATADIR%%/targets/pelvis/external_oblique_muscular_lower.target
+%%DATADIR%%/targets/pelvis/external_oblique_muscular_lower2.target
%%DATADIR%%/targets/pelvis/genitals_female.target
+%%DATADIR%%/targets/pelvis/genitals_man_base.target
+%%DATADIR%%/targets/pelvis/genitals_man_big.target
+%%DATADIR%%/targets/pelvis/genitals_man_foreskin.target
+%%DATADIR%%/targets/pelvis/genitals_man_foreskin_behind.target
+%%DATADIR%%/targets/pelvis/genitals_man_foreskin_big.target
+%%DATADIR%%/targets/pelvis/genitals_man_foreskin_long.target
+%%DATADIR%%/targets/pelvis/genitals_man_foreskin_none.target
+%%DATADIR%%/targets/pelvis/genitals_man_foreskin_semi_behind.target
+%%DATADIR%%/targets/pelvis/genitals_man_foreskin_short.target
+%%DATADIR%%/targets/pelvis/genitals_man_foreskin_small.target
+%%DATADIR%%/targets/pelvis/genitals_man_glande_big.target
+%%DATADIR%%/targets/pelvis/genitals_man_glande_small.target
+%%DATADIR%%/targets/pelvis/genitals_man_glande_smooth_big.target
+%%DATADIR%%/targets/pelvis/genitals_man_glande_smooth_small.target
+%%DATADIR%%/targets/pelvis/genitals_man_penis_long.target
+%%DATADIR%%/targets/pelvis/genitals_man_penis_short.target
+%%DATADIR%%/targets/pelvis/genitals_man_small.target
+%%DATADIR%%/targets/pelvis/genitals_man_testicula_big_depth.target
+%%DATADIR%%/targets/pelvis/genitals_man_testicula_big_height.target
+%%DATADIR%%/targets/pelvis/genitals_man_testicula_big_width.target
+%%DATADIR%%/targets/pelvis/genitals_man_testicula_left_down.target
+%%DATADIR%%/targets/pelvis/genitals_man_testicula_left_up.target
+%%DATADIR%%/targets/pelvis/genitals_man_testicula_right_down.target
+%%DATADIR%%/targets/pelvis/genitals_man_testicula_right_up.target
+%%DATADIR%%/targets/pelvis/genitals_man_testicula_small_depth.target
+%%DATADIR%%/targets/pelvis/genitals_man_testicula_small_height.target
+%%DATADIR%%/targets/pelvis/genitals_man_testicula_small_width.target
%%DATADIR%%/targets/pelvis/gluteus_fat.target
+%%DATADIR%%/targets/pelvis/gluteus_fat2.target
+%%DATADIR%%/targets/pelvis/gluteus_flabby.target
+%%DATADIR%%/targets/pelvis/gluteus_out.target
%%DATADIR%%/targets/pelvis/gluteus_scrawny.target
+%%DATADIR%%/targets/pelvis/l_hip_width_max.target
+%%DATADIR%%/targets/pelvis/man_no_genital.target
+%%DATADIR%%/targets/pelvis/muscolifascia.target
%%DATADIR%%/targets/pelvis/oblique_muscular.target
+%%DATADIR%%/targets/pelvis/pelvis_height_min.target
+%%DATADIR%%/targets/pelvis/pelvis_lateral_large.target
+%%DATADIR%%/targets/pelvis/pelvis_lateral_small.target
+%%DATADIR%%/targets/pelvis/pelvis_rot_left.target
+%%DATADIR%%/targets/pelvis/pelvis_rot_left1.target
+%%DATADIR%%/targets/pelvis/pelvis_rot_right.target
+%%DATADIR%%/targets/pelvis/pelvis_rot_right1.target
%%DATADIR%%/targets/pelvis/pelvis_width_min.target
-%%DATADIR%%/targets/pelvis/serratus_muscular.target
+%%DATADIR%%/targets/pelvis/r_hip_width_max.target
+%%DATADIR%%/targets/r_cheek/r_cheeck_line1.target
+%%DATADIR%%/targets/r_cheek/r_cheeck_line2.target
+%%DATADIR%%/targets/r_cheek/r_cheeck_line3.target
+%%DATADIR%%/targets/r_cheek/r_cheeck_line4.target
+%%DATADIR%%/targets/r_cheek/r_cheeck_line5.target
+%%DATADIR%%/targets/r_cheek/r_cheeck_line6.target
%%DATADIR%%/targets/r_cheek/r_cheek_flabby.target
%%DATADIR%%/targets/r_cheek/r_cheek_hollow.target
%%DATADIR%%/targets/r_cheek/r_cheek_round.target
%%DATADIR%%/targets/r_cheek/r_cheek_smooth.target
+%%DATADIR%%/targets/r_cheek/r_cheek_up.target
%%DATADIR%%/targets/r_cheek/r_cheek_wrinkle.target
%%DATADIR%%/targets/r_cheek/r_cheekbone_down.target
%%DATADIR%%/targets/r_cheek/r_cheekbone_protuding.target
+%%DATADIR%%/targets/r_cheek/r_cheekbone_protuding_up.target
%%DATADIR%%/targets/r_cheek/r_cheekbone_shallow.target
%%DATADIR%%/targets/r_cheek/r_cheekbone_thin.target
%%DATADIR%%/targets/r_cheek/r_cheekbone_up.target
%%DATADIR%%/targets/r_cheek/r_cheekbone_wide.target
+%%DATADIR%%/targets/r_ear/r_ear_antihelix_large.target
+%%DATADIR%%/targets/r_ear/r_ear_antihelix_none.target
+%%DATADIR%%/targets/r_ear/r_ear_antihelix_puff.target
+%%DATADIR%%/targets/r_ear/r_ear_antihelix_round.target
+%%DATADIR%%/targets/r_ear/r_ear_antihelix_short.target
+%%DATADIR%%/targets/r_ear/r_ear_antihelix_thin.target
+%%DATADIR%%/targets/r_ear/r_ear_antitragus_down.target
+%%DATADIR%%/targets/r_ear/r_ear_antitragus_none.target
+%%DATADIR%%/targets/r_ear/r_ear_antitragus_puff.target
+%%DATADIR%%/targets/r_ear/r_ear_antitragus_round.target
+%%DATADIR%%/targets/r_ear/r_ear_antitragus_up.target
+%%DATADIR%%/targets/r_ear/r_ear_baby.target
%%DATADIR%%/targets/r_ear/r_ear_backward.target
%%DATADIR%%/targets/r_ear/r_ear_big.target
+%%DATADIR%%/targets/r_ear/r_ear_crus_helicis_down.target
+%%DATADIR%%/targets/r_ear/r_ear_crus_helicis_large.target
+%%DATADIR%%/targets/r_ear/r_ear_crus_helicis_none.target
+%%DATADIR%%/targets/r_ear/r_ear_crus_helicis_up.target
+%%DATADIR%%/targets/r_ear/r_ear_cymba_conchae_big.target
+%%DATADIR%%/targets/r_ear/r_ear_cymba_conchae_small.target
+%%DATADIR%%/targets/r_ear/r_ear_extrabig.target
+%%DATADIR%%/targets/r_ear/r_ear_extrasmall.target
+%%DATADIR%%/targets/r_ear/r_ear_extraup.target
%%DATADIR%%/targets/r_ear/r_ear_flap.target
+%%DATADIR%%/targets/r_ear/r_ear_flappy_bottom.target
+%%DATADIR%%/targets/r_ear/r_ear_flappy_sideways.target
+%%DATADIR%%/targets/r_ear/r_ear_flappy_top.target
%%DATADIR%%/targets/r_ear/r_ear_forward.target
%%DATADIR%%/targets/r_ear/r_ear_half_wings.target
%%DATADIR%%/targets/r_ear/r_ear_height.target
+%%DATADIR%%/targets/r_ear/r_ear_inferior_crus_large.target
+%%DATADIR%%/targets/r_ear/r_ear_internal_flat.target
%%DATADIR%%/targets/r_ear/r_ear_lobe_big.target
%%DATADIR%%/targets/r_ear/r_ear_lobe_small.target
+%%DATADIR%%/targets/r_ear/r_ear_lobe_width_max.target
+%%DATADIR%%/targets/r_ear/r_ear_lobe_width_min.target
%%DATADIR%%/targets/r_ear/r_ear_low.target
+%%DATADIR%%/targets/r_ear/r_ear_lower_depth.target
+%%DATADIR%%/targets/r_ear/r_ear_lower_height.target
+%%DATADIR%%/targets/r_ear/r_ear_lower_small.target
+%%DATADIR%%/targets/r_ear/r_ear_outward.target
%%DATADIR%%/targets/r_ear/r_ear_quod.target
+%%DATADIR%%/targets/r_ear/r_ear_rot_backward.target
+%%DATADIR%%/targets/r_ear/r_ear_rot_forward.target
+%%DATADIR%%/targets/r_ear/r_ear_rot_outward.target
%%DATADIR%%/targets/r_ear/r_ear_small.target
+%%DATADIR%%/targets/r_ear/r_ear_thin.target
%%DATADIR%%/targets/r_ear/r_ear_wind.target
%%DATADIR%%/targets/r_ear/r_earlobe_height_max.target
%%DATADIR%%/targets/r_ear/r_earlobe_height_min.target
+%%DATADIR%%/targets/r_ear/r_earlobe_out.target
%%DATADIR%%/targets/r_ear/r_earlobe_width_max.target
+%%DATADIR%%/targets/r_ear2/r_ear_helix_in1.target
+%%DATADIR%%/targets/r_ear2/r_ear_helix_in10.target
+%%DATADIR%%/targets/r_ear2/r_ear_helix_in11.target
+%%DATADIR%%/targets/r_ear2/r_ear_helix_in2.target
+%%DATADIR%%/targets/r_ear2/r_ear_helix_in3.target
+%%DATADIR%%/targets/r_ear2/r_ear_helix_in4.target
+%%DATADIR%%/targets/r_ear2/r_ear_helix_in5.target
+%%DATADIR%%/targets/r_ear2/r_ear_helix_in6.target
+%%DATADIR%%/targets/r_ear2/r_ear_helix_in7.target
+%%DATADIR%%/targets/r_ear2/r_ear_helix_in8.target
+%%DATADIR%%/targets/r_ear2/r_ear_helix_in9.target
+%%DATADIR%%/targets/r_ear2/r_ear_helix_out1.target
+%%DATADIR%%/targets/r_ear2/r_ear_helix_out10.target
+%%DATADIR%%/targets/r_ear2/r_ear_helix_out11.target
+%%DATADIR%%/targets/r_ear2/r_ear_helix_out2.target
+%%DATADIR%%/targets/r_ear2/r_ear_helix_out3.target
+%%DATADIR%%/targets/r_ear2/r_ear_helix_out4.target
+%%DATADIR%%/targets/r_ear2/r_ear_helix_out5.target
+%%DATADIR%%/targets/r_ear2/r_ear_helix_out6.target
+%%DATADIR%%/targets/r_ear2/r_ear_helix_out7.target
+%%DATADIR%%/targets/r_ear2/r_ear_helix_out8.target
+%%DATADIR%%/targets/r_ear2/r_ear_helix_out9.target
+%%DATADIR%%/targets/r_ear2/r_ear_helix_puff.target
+%%DATADIR%%/targets/r_ear2/r_ear_helix_side.target
+%%DATADIR%%/targets/r_ear2/r_ear_helix_thin.target
+%%DATADIR%%/targets/r_ear2/r_ear_helix_upper.target
+%%DATADIR%%/targets/r_ear2/r_ear_incisura_interior_down.target
+%%DATADIR%%/targets/r_ear2/r_ear_incisura_interior_up.target
+%%DATADIR%%/targets/r_ear2/r_ear_incisura_intertragica_big.target
+%%DATADIR%%/targets/r_ear2/r_ear_incisura_intertragica_down.target
+%%DATADIR%%/targets/r_ear2/r_ear_incisura_intertragica_small.target
+%%DATADIR%%/targets/r_ear2/r_ear_incisura_intertragica_up.target
+%%DATADIR%%/targets/r_ear2/r_ear_inferior_crus_narrow.target
+%%DATADIR%%/targets/r_ear2/r_ear_inferior_crus_none.target
+%%DATADIR%%/targets/r_ear2/r_ear_scapha_lower_large.target
+%%DATADIR%%/targets/r_ear2/r_ear_scapha_none.target
+%%DATADIR%%/targets/r_ear2/r_ear_scapha_side_large.target
+%%DATADIR%%/targets/r_ear2/r_ear_scapha_upper_large.target
+%%DATADIR%%/targets/r_ear2/r_ear_superior_crus_large.target
+%%DATADIR%%/targets/r_ear2/r_ear_superior_crus_narrow.target
+%%DATADIR%%/targets/r_ear2/r_ear_superior_crus_none.target
+%%DATADIR%%/targets/r_ear2/r_ear_tragus_down.target
+%%DATADIR%%/targets/r_ear2/r_ear_tragus_in.target
+%%DATADIR%%/targets/r_ear2/r_ear_tragus_none.target
+%%DATADIR%%/targets/r_ear2/r_ear_tragus_puff.target
+%%DATADIR%%/targets/r_ear2/r_ear_tragus_small.target
+%%DATADIR%%/targets/r_ear2/r_ear_tragus_up.target
+%%DATADIR%%/targets/r_ear2/r_ear_triangular_fossa_big.target
+%%DATADIR%%/targets/r_ear2/r_ear_triangular_fossa_long.target
+%%DATADIR%%/targets/r_ear2/r_ear_triangular_fossa_none.target
+%%DATADIR%%/targets/r_ear2/r_ear_triangular_fossa_short.target
+%%DATADIR%%/targets/r_ear2/r_ear_triangular_fossa_small.target
+%%DATADIR%%/targets/r_ear2/r_ear_tuberculum_auricolae.target
+%%DATADIR%%/targets/r_ear2/r_ear_tuberculum_supertragicum.target
+%%DATADIR%%/targets/r_ear2/r_ear_upper_big.target
+%%DATADIR%%/targets/r_ear2/r_ear_upper_depth.target
+%%DATADIR%%/targets/r_ear2/r_ear_upper_height.target
+%%DATADIR%%/targets/r_ear2/r_ear_upper_out.target
%%DATADIR%%/targets/r_eye/r_eye_big.target
-%%DATADIR%%/targets/r_eye/r_eye_cat.target
+%%DATADIR%%/targets/r_eye/r_eye_box.target
+%%DATADIR%%/targets/r_eye/r_eye_bulb_back.target
+%%DATADIR%%/targets/r_eye/r_eye_bulb_down.target
+%%DATADIR%%/targets/r_eye/r_eye_bulb_extrasize.target
+%%DATADIR%%/targets/r_eye/r_eye_bulb_forward.target
+%%DATADIR%%/targets/r_eye/r_eye_bulb_left.target
+%%DATADIR%%/targets/r_eye/r_eye_bulb_minisize.target
+%%DATADIR%%/targets/r_eye/r_eye_bulb_right.target
+%%DATADIR%%/targets/r_eye/r_eye_bulb_up.target
%%DATADIR%%/targets/r_eye/r_eye_center_height_max.target
%%DATADIR%%/targets/r_eye/r_eye_distance_max.target
%%DATADIR%%/targets/r_eye/r_eye_distance_min.target
%%DATADIR%%/targets/r_eye/r_eye_down.target
-%%DATADIR%%/targets/r_eye/r_eye_external_corner_down.target
-%%DATADIR%%/targets/r_eye/r_eye_external_corner_in.target
-%%DATADIR%%/targets/r_eye/r_eye_external_corner_out.target
-%%DATADIR%%/targets/r_eye/r_eye_external_corner_up.target
-%%DATADIR%%/targets/r_eye/r_eye_external_height_max.target
%%DATADIR%%/targets/r_eye/r_eye_fold.target
-%%DATADIR%%/targets/r_eye/r_eye_internal_corner_down.target
-%%DATADIR%%/targets/r_eye/r_eye_internal_corner_in.target
-%%DATADIR%%/targets/r_eye/r_eye_internal_corner_out.target
-%%DATADIR%%/targets/r_eye/r_eye_internal_corner_up.target
-%%DATADIR%%/targets/r_eye/r_eye_internal_height_max.target
+%%DATADIR%%/targets/r_eye/r_eye_fold_double.target
+%%DATADIR%%/targets/r_eye/r_eye_fold_lower.target
+%%DATADIR%%/targets/r_eye/r_eye_iris_min.target
+%%DATADIR%%/targets/r_eye/r_eye_no_bulb.target
%%DATADIR%%/targets/r_eye/r_eye_overhang.target
%%DATADIR%%/targets/r_eye/r_eye_small.target
%%DATADIR%%/targets/r_eye/r_eye_up.target
@@ -1661,189 +6760,811 @@ bin/makehuman
%%DATADIR%%/targets/r_eye/r_eyelashes_curve.target
%%DATADIR%%/targets/r_eye/r_eyelashes_long.target
%%DATADIR%%/targets/r_eye/r_eyelashes_none.target
+%%DATADIR%%/targets/r_eye/r_eyelids_out.target
%%DATADIR%%/targets/r_eye/r_eyelids_up.target
+%%DATADIR%%/targets/r_eye2/r_eye_bulb_rot_down.target
+%%DATADIR%%/targets/r_eye2/r_eye_bulb_rot_in.target
+%%DATADIR%%/targets/r_eye2/r_eye_bulb_rot_out.target
+%%DATADIR%%/targets/r_eye2/r_eye_bulb_rot_up.target
+%%DATADIR%%/targets/r_eye2/r_eye_close.target
+%%DATADIR%%/targets/r_eye2/r_eye_external_corner_down.target
+%%DATADIR%%/targets/r_eye2/r_eye_external_corner_in.target
+%%DATADIR%%/targets/r_eye2/r_eye_external_corner_out.target
+%%DATADIR%%/targets/r_eye2/r_eye_external_corner_up.target
+%%DATADIR%%/targets/r_eye2/r_eye_external_height_max.target
+%%DATADIR%%/targets/r_eye2/r_eye_external_rot_in.target
+%%DATADIR%%/targets/r_eye2/r_eye_external_rot_out.target
+%%DATADIR%%/targets/r_eye2/r_eye_inside.target
+%%DATADIR%%/targets/r_eye2/r_eye_internal_corner_down.target
+%%DATADIR%%/targets/r_eye2/r_eye_internal_corner_in.target
+%%DATADIR%%/targets/r_eye2/r_eye_internal_corner_out.target
+%%DATADIR%%/targets/r_eye2/r_eye_internal_corner_up.target
+%%DATADIR%%/targets/r_eye2/r_eye_internal_height_max.target
+%%DATADIR%%/targets/r_eye2/r_eye_lid_lower_up.target
+%%DATADIR%%/targets/r_eye2/r_eye_lid_upper_down.target
+%%DATADIR%%/targets/r_eye2/r_eye_lid_upper_half_down.target
+%%DATADIR%%/targets/r_eye2/r_eye_lid_upper_up.target
+%%DATADIR%%/targets/r_eye2/r_eye_overhang.target
+%%DATADIR%%/targets/r_eye2/r_eyebrow_inner_down.target
+%%DATADIR%%/targets/r_eye2/r_eyebrow_inner_up.target
+%%DATADIR%%/targets/r_eye2/r_eyebrow_outer_up.target
+%%DATADIR%%/targets/r_eye2/r_eyebrown_lower_down.target
+%%DATADIR%%/targets/r_eye2/r_eyelash_upper_down.target
%%DATADIR%%/targets/r_foot/r_ankle_big.target
+%%DATADIR%%/targets/r_foot/r_ankle_fat.target
%%DATADIR%%/targets/r_foot/r_ankle_little.target
+%%DATADIR%%/targets/r_foot/r_foot_bigtoe_valgus.target
%%DATADIR%%/targets/r_foot/r_foot_fingers_long.target
%%DATADIR%%/targets/r_foot/r_foot_height_max.target
%%DATADIR%%/targets/r_foot/r_foot_height_min.target
+%%DATADIR%%/targets/r_foot/r_foot_long.target
+%%DATADIR%%/targets/r_foot/r_foot_plantare_down.target
+%%DATADIR%%/targets/r_foot/r_foot_plantare_up.target
+%%DATADIR%%/targets/r_foot/r_foot_scrawny.target
%%DATADIR%%/targets/r_foot/r_foot_short.target
-%%DATADIR%%/targets/r_foot/r_foot_sizez_min.target
%%DATADIR%%/targets/r_foot/r_foot_width_max.target
%%DATADIR%%/targets/r_foot/r_foot_width_min.target
%%DATADIR%%/targets/r_foot/r_heel_none.target
-%%DATADIR%%/targets/r_hand/r_hand_sizex_min.target
-%%DATADIR%%/targets/r_hand/r_hand_sizey_min.target
-%%DATADIR%%/targets/r_hand/r_hand_sizez_min.target
-%%DATADIR%%/targets/r_hand/r_nail_sizex_min.target
-%%DATADIR%%/targets/r_hand/r_nail_sizez_min.target
+%%DATADIR%%/targets/r_forefinger/r_height_max_forefinger.target
+%%DATADIR%%/targets/r_forefinger/r_height_min_forefinger.target
+%%DATADIR%%/targets/r_forefinger/r_lenght_max_forefinger.target
+%%DATADIR%%/targets/r_forefinger/r_lenght_min_forefinger.target
+%%DATADIR%%/targets/r_forefinger/r_nail_cut_forefinger.target
+%%DATADIR%%/targets/r_forefinger/r_nail_cut_smooth_forefinger.target
+%%DATADIR%%/targets/r_forefinger/r_nail_lenght_max_forefinger.target
+%%DATADIR%%/targets/r_forefinger/r_nail_lenght_min_forefinger.target
+%%DATADIR%%/targets/r_forefinger/r_nail_lenght_out_max_forefinger.target
+%%DATADIR%%/targets/r_forefinger/r_nail_width_max_forefinger.target
+%%DATADIR%%/targets/r_forefinger/r_nail_width_min_forefinger.target
+%%DATADIR%%/targets/r_forefinger/r_width_max_forefinger.target
+%%DATADIR%%/targets/r_forefinger/r_width_min_forefinger.target
+%%DATADIR%%/targets/r_hand/r_hand_height_max.target
+%%DATADIR%%/targets/r_hand/r_hand_height_min.target
+%%DATADIR%%/targets/r_hand/r_hand_lenght_max.target
+%%DATADIR%%/targets/r_hand/r_hand_lenght_min.target
+%%DATADIR%%/targets/r_hand/r_hand_width_max.target
+%%DATADIR%%/targets/r_hand/r_hand_width_min.target
+%%DATADIR%%/targets/r_hand2/r_hand_scrawny.target
+%%DATADIR%%/targets/r_littlefinger/r_height_max_littlefinger.target
+%%DATADIR%%/targets/r_littlefinger/r_height_min_littlefinger.target
+%%DATADIR%%/targets/r_littlefinger/r_lenght_max_littlefinger.target
+%%DATADIR%%/targets/r_littlefinger/r_lenght_min_littlefinger.target
+%%DATADIR%%/targets/r_littlefinger/r_nail_cut_littlefinger.target
+%%DATADIR%%/targets/r_littlefinger/r_nail_cut_smooth_littlefinger.target
+%%DATADIR%%/targets/r_littlefinger/r_nail_lenght_max_littlefinger.target
+%%DATADIR%%/targets/r_littlefinger/r_nail_lenght_min_littlefinger.target
+%%DATADIR%%/targets/r_littlefinger/r_nail_lenght_out_max_littlefinger.target
+%%DATADIR%%/targets/r_littlefinger/r_nail_width_max_littlefinger.target
+%%DATADIR%%/targets/r_littlefinger/r_nail_width_min_littlefinger.target
+%%DATADIR%%/targets/r_littlefinger/r_width_max_littlefinger.target
+%%DATADIR%%/targets/r_littlefinger/r_width_min_littlefinger.target
%%DATADIR%%/targets/r_lower_arm/r_lower_arm_fat.target
+%%DATADIR%%/targets/r_lower_arm/r_lower_arm_height_min.target
%%DATADIR%%/targets/r_lower_arm/r_lower_arm_long.target
%%DATADIR%%/targets/r_lower_arm/r_lower_arm_muscular.target
%%DATADIR%%/targets/r_lower_arm/r_lower_arm_scrawny.target
%%DATADIR%%/targets/r_lower_arm/r_lower_arm_short.target
-%%DATADIR%%/targets/r_lower_arm/r_lower_arm_sizey_min.target
-%%DATADIR%%/targets/r_lower_arm/r_lower_arm_sizez_min.target
+%%DATADIR%%/targets/r_lower_arm/r_lower_arm_width_min.target
+%%DATADIR%%/targets/r_lower_arm/r_lower_arm_wrist_muscolar.target
+%%DATADIR%%/targets/r_lower_arm/r_wrist_big.target
+%%DATADIR%%/targets/r_lower_arm/r_wrist_small.target
%%DATADIR%%/targets/r_lower_leg/r_calf_muscular.target
+%%DATADIR%%/targets/r_lower_leg/r_leg_lower_convex.target
%%DATADIR%%/targets/r_lower_leg/r_leg_x_deform.target
+%%DATADIR%%/targets/r_lower_leg/r_lower_leg_depth_min.target
%%DATADIR%%/targets/r_lower_leg/r_lower_leg_fat.target
+%%DATADIR%%/targets/r_lower_leg/r_lower_leg_height_min.target
%%DATADIR%%/targets/r_lower_leg/r_lower_leg_long.target
+%%DATADIR%%/targets/r_lower_leg/r_lower_leg_natural_arc.target
%%DATADIR%%/targets/r_lower_leg/r_lower_leg_scrawny.target
-%%DATADIR%%/targets/r_lower_leg/r_lower_leg_sizex_min.target
-%%DATADIR%%/targets/r_lower_leg/r_lower_leg_sizey_min.target
-%%DATADIR%%/targets/r_lower_leg/r_lower_leg_sizez_min.target
+%%DATADIR%%/targets/r_lower_leg/r_lower_leg_width_min.target
+%%DATADIR%%/targets/r_middlefinger/r_height_max_middlefinger.target
+%%DATADIR%%/targets/r_middlefinger/r_height_min_middlefinger.target
+%%DATADIR%%/targets/r_middlefinger/r_lenght_max_middlefinger.target
+%%DATADIR%%/targets/r_middlefinger/r_lenght_min_middlefinger.target
+%%DATADIR%%/targets/r_middlefinger/r_nail_cut_middlefinger.target
+%%DATADIR%%/targets/r_middlefinger/r_nail_cut_smooth_middlefinger.target
+%%DATADIR%%/targets/r_middlefinger/r_nail_lenght_max_middlefinger.target
+%%DATADIR%%/targets/r_middlefinger/r_nail_lenght_min_middlefinger.target
+%%DATADIR%%/targets/r_middlefinger/r_nail_lenght_out_max_middlefinger.target
+%%DATADIR%%/targets/r_middlefinger/r_nail_width_max_middlefinger.target
+%%DATADIR%%/targets/r_middlefinger/r_nail_width_min_middlefinger.target
+%%DATADIR%%/targets/r_middlefinger/r_width_max_middlefinger.target
+%%DATADIR%%/targets/r_middlefinger/r_width_min_middlefinger.target
+%%DATADIR%%/targets/r_pollex/r_height_max_pollex.target
+%%DATADIR%%/targets/r_pollex/r_height_min_pollex.target
+%%DATADIR%%/targets/r_pollex/r_lenght_max_pollex.target
+%%DATADIR%%/targets/r_pollex/r_lenght_min_pollex.target
+%%DATADIR%%/targets/r_pollex/r_nail_cut_pollex.target
+%%DATADIR%%/targets/r_pollex/r_nail_cut_smooth_pollex.target
+%%DATADIR%%/targets/r_pollex/r_nail_lenght_max_pollex.target
+%%DATADIR%%/targets/r_pollex/r_nail_lenght_min_pollex.target
+%%DATADIR%%/targets/r_pollex/r_nail_lenght_out_max_pollex.target
+%%DATADIR%%/targets/r_pollex/r_nail_width_max_pollex.target
+%%DATADIR%%/targets/r_pollex/r_nail_width_min_pollex.target
+%%DATADIR%%/targets/r_pollex/r_width_max_pollex.target
+%%DATADIR%%/targets/r_pollex/r_width_min_pollex.target
+%%DATADIR%%/targets/r_ringfinger/r_height_max_ringfinger.target
+%%DATADIR%%/targets/r_ringfinger/r_height_min_ringfinger.target
+%%DATADIR%%/targets/r_ringfinger/r_lenght_max_ringfinger.target
+%%DATADIR%%/targets/r_ringfinger/r_lenght_min_ringfinger.target
+%%DATADIR%%/targets/r_ringfinger/r_nail_cut_ringfinger.target
+%%DATADIR%%/targets/r_ringfinger/r_nail_cut_smooth_ringfinger.target
+%%DATADIR%%/targets/r_ringfinger/r_nail_lenght_max_ringfinger.target
+%%DATADIR%%/targets/r_ringfinger/r_nail_lenght_min_ringfinger.target
+%%DATADIR%%/targets/r_ringfinger/r_nail_lenght_out_max_ringfinger.target
+%%DATADIR%%/targets/r_ringfinger/r_nail_width_max_ringfinger.target
+%%DATADIR%%/targets/r_ringfinger/r_nail_width_min_ringfinger.target
+%%DATADIR%%/targets/r_ringfinger/r_width_max_ringfinger.target
+%%DATADIR%%/targets/r_ringfinger/r_width_min_ringfinger.target
%%DATADIR%%/targets/r_shoulder/r_deltoid_muscular.target
%%DATADIR%%/targets/r_shoulder/r_deltoid_scrawny.target
-%%DATADIR%%/targets/r_shoulder/r_shoulder_out.target
-%%DATADIR%%/targets/r_shoulder/r_shoulder_sizex.target
+%%DATADIR%%/targets/r_shoulder/r_shoulder_depth_min.target
+%%DATADIR%%/targets/r_shoulder/r_shoulder_lenght_max.target
+%%DATADIR%%/targets/r_shoulder/r_shoulder_lenght_min.target
+%%DATADIR%%/targets/r_shoulder/r_shoulder_min.target
+%%DATADIR%%/targets/r_shoulder/r_shoulder_move_backward.target
+%%DATADIR%%/targets/r_shoulder/r_shoulder_move_down.target
+%%DATADIR%%/targets/r_shoulder/r_shoulder_move_down2.target
+%%DATADIR%%/targets/r_shoulder/r_shoulder_move_forward.target
+%%DATADIR%%/targets/r_shoulder/r_shoulder_move_sideways_in.target
+%%DATADIR%%/targets/r_shoulder/r_shoulder_move_sideways_out.target
+%%DATADIR%%/targets/r_shoulder/r_shoulder_move_up.target
+%%DATADIR%%/targets/r_shoulder/r_shoulder_move_up2.target
+%%DATADIR%%/targets/r_shoulder/r_shoulder_scapula_move_backward.target
+%%DATADIR%%/targets/r_shoulder/r_shoulder_width.target
+%%DATADIR%%/targets/r_shoulder/r_trapezious_down.target
+%%DATADIR%%/targets/r_upper_arm/r_armpit_width.target
%%DATADIR%%/targets/r_upper_arm/r_biceps_muscular.target
%%DATADIR%%/targets/r_upper_arm/r_triceps.target
+%%DATADIR%%/targets/r_upper_arm/r_upper_arm_elbow_big.target
+%%DATADIR%%/targets/r_upper_arm/r_upper_arm_elbow_small.target
%%DATADIR%%/targets/r_upper_arm/r_upper_arm_fat.target
%%DATADIR%%/targets/r_upper_arm/r_upper_arm_flabby.target
+%%DATADIR%%/targets/r_upper_arm/r_upper_arm_height_min.target
%%DATADIR%%/targets/r_upper_arm/r_upper_arm_long.target
%%DATADIR%%/targets/r_upper_arm/r_upper_arm_scrawny.target
%%DATADIR%%/targets/r_upper_arm/r_upper_arm_short.target
-%%DATADIR%%/targets/r_upper_arm/r_upper_arm_sizey_min.target
-%%DATADIR%%/targets/r_upper_arm/r_upper_arm_sizez_min.target
+%%DATADIR%%/targets/r_upper_arm/r_upper_arm_width_min.target
%%DATADIR%%/targets/r_upper_leg/r_femoris_muscular.target
+%%DATADIR%%/targets/r_upper_leg/r_knee_big.target
+%%DATADIR%%/targets/r_upper_leg/r_knee_external_min.target
+%%DATADIR%%/targets/r_upper_leg/r_knee_small.target
+%%DATADIR%%/targets/r_upper_leg/r_knee_smooth.target
+%%DATADIR%%/targets/r_upper_leg/r_leg_upper_convex.target
%%DATADIR%%/targets/r_upper_leg/r_quadricipes_muscular.target
+%%DATADIR%%/targets/r_upper_leg/r_thigh_external_max.target
+%%DATADIR%%/targets/r_upper_leg/r_thigh_internal_max.target
+%%DATADIR%%/targets/r_upper_leg/r_thigh_smooth.target
+%%DATADIR%%/targets/r_upper_leg/r_upper_back_leg_fat.target
+%%DATADIR%%/targets/r_upper_leg/r_upper_leg_cellulitis.target
%%DATADIR%%/targets/r_upper_leg/r_upper_leg_fat.target
+%%DATADIR%%/targets/r_upper_leg/r_upper_leg_height_min.target
+%%DATADIR%%/targets/r_upper_leg/r_upper_leg_lenght_min.target
%%DATADIR%%/targets/r_upper_leg/r_upper_leg_long.target
%%DATADIR%%/targets/r_upper_leg/r_upper_leg_scrawny.target
-%%DATADIR%%/targets/r_upper_leg/r_upper_leg_sizex_min.target
-%%DATADIR%%/targets/r_upper_leg/r_upper_leg_sizey_min.target
-%%DATADIR%%/targets/r_upper_leg/r_upper_leg_sizez_min.target
+%%DATADIR%%/targets/r_upper_leg/r_upper_leg_width_min.target
+%%DATADIR%%/targets/teeth/teeth_center_none.target
+%%DATADIR%%/targets/teeth/teeth_center_out.target
+%%DATADIR%%/targets/teeth/teeth_depth_min.target
+%%DATADIR%%/targets/teeth/teeth_height_min.target
+%%DATADIR%%/targets/teeth/teeth_in.target
+%%DATADIR%%/targets/teeth/teeth_interdental.target
+%%DATADIR%%/targets/teeth/teeth_long.target
+%%DATADIR%%/targets/teeth/teeth_move_backward.target
+%%DATADIR%%/targets/teeth/teeth_out.target
+%%DATADIR%%/targets/teeth/teeth_pyorrhoea.target
+%%DATADIR%%/targets/teeth/teeth_realpeople.target
+%%DATADIR%%/targets/teeth/teeth_rot.target
+%%DATADIR%%/targets/teeth/teeth_sideways.target
+%%DATADIR%%/targets/teeth/teeth_upper_move_up.target
+%%DATADIR%%/targets/teeth/teeth_upper_sideways.target
+%%DATADIR%%/targets/teeth/teeth_width_min.target
+%%DATADIR%%/targets/tongue/tongue_fat.target
+%%DATADIR%%/targets/tongue/tongue_max_height.target
+%%DATADIR%%/targets/tongue/tongue_max_lenght.target
+%%DATADIR%%/targets/tongue/tongue_min_height.target
+%%DATADIR%%/targets/tongue/tongue_min_lenght.target
+%%DATADIR%%/targets/tongue/tongue_min_width.target
+%%DATADIR%%/targets/tongue/tongue_move_backward.target
+%%DATADIR%%/targets/tongue/tongue_move_down.target
+%%DATADIR%%/targets/tongue/tongue_move_forward.target
+%%DATADIR%%/targets/tongue/tongue_move_left.target
+%%DATADIR%%/targets/tongue/tongue_move_right.target
+%%DATADIR%%/targets/tongue/tongue_move_up.target
+%%DATADIR%%/targets/tongue/tongue_tip_down.target
+%%DATADIR%%/targets/tongue/tongue_tip_left.target
+%%DATADIR%%/targets/tongue/tongue_tip_out.target
+%%DATADIR%%/targets/tongue/tongue_tip_right.target
+%%DATADIR%%/targets/tongue/tongue_tip_up.target
+%%DATADIR%%/targets/tongue/tongue_width_max.target
%%DATADIR%%/targets/torso/aureola_large.target
+%%DATADIR%%/targets/torso/aureola_out.target
+%%DATADIR%%/targets/torso/back_arch_big.target
+%%DATADIR%%/targets/torso/breast_out.target
+%%DATADIR%%/targets/torso/breast_slope.target
+%%DATADIR%%/targets/torso/breast_slope2.target
+%%DATADIR%%/targets/torso/clavicle_height_position.target
+%%DATADIR%%/targets/torso/clavicle_low_position.target
+%%DATADIR%%/targets/torso/clavicle_scrawny.target
+%%DATADIR%%/targets/torso/dorsi_back_out.target
%%DATADIR%%/targets/torso/dorsi_muscular.target
%%DATADIR%%/targets/torso/dorsi_scrawny.target
%%DATADIR%%/targets/torso/erectors_muscular.target
+%%DATADIR%%/targets/torso/female_breast_big_almost_round.target
+%%DATADIR%%/targets/torso/female_breast_big_natural.target
+%%DATADIR%%/targets/torso/female_breast_little.target
+%%DATADIR%%/targets/torso/female_breast_medium.target
+%%DATADIR%%/targets/torso/female_breast_medium_gravity.target
+%%DATADIR%%/targets/torso/female_breast_teen.target
%%DATADIR%%/targets/torso/l_pectoral_external_out.target
%%DATADIR%%/targets/torso/l_side_out.target
-%%DATADIR%%/targets/torso/neck_scrawny.target
+%%DATADIR%%/targets/torso/l_side_width_min.target
+%%DATADIR%%/targets/torso/nipple.target
%%DATADIR%%/targets/torso/nipple_out.target
+%%DATADIR%%/targets/torso/nipple_point.target
+%%DATADIR%%/targets/torso/nipple_slope2.target
+%%DATADIR%%/targets/torso/pectoral_backward.target
+%%DATADIR%%/targets/torso/pectoral_big_width.target
+%%DATADIR%%/targets/torso/pectoral_down.target
+%%DATADIR%%/targets/torso/pectoral_foreward.target
%%DATADIR%%/targets/torso/pectoral_muscular.target
%%DATADIR%%/targets/torso/pectoral_scrawny.target
+%%DATADIR%%/targets/torso/pectoral_small_width.target
+%%DATADIR%%/targets/torso/pectoral_up.target
%%DATADIR%%/targets/torso/r_pectoral_external_out.target
%%DATADIR%%/targets/torso/r_side_out.target
+%%DATADIR%%/targets/torso/r_side_width_min.target
%%DATADIR%%/targets/torso/rhomboid_muscular.target
-%%DATADIR%%/targets/torso/targets_female_breast_big_natural.target
-%%DATADIR%%/targets/torso/targets_female_breast_medium.target
+%%DATADIR%%/targets/torso/rib_front_flat.target
+%%DATADIR%%/targets/torso/rib_front_out.target
%%DATADIR%%/targets/torso/teres_muscular.target
+%%DATADIR%%/targets/torso/torso_down.target
+%%DATADIR%%/targets/torso/torso_external_oblique_upper.target
%%DATADIR%%/targets/torso/torso_fat.target
+%%DATADIR%%/targets/torso/torso_fat_woman.target
%%DATADIR%%/targets/torso/torso_flabby.target
-%%DATADIR%%/targets/torso/torso_sizex_min.target
-%%DATADIR%%/targets/torso/torso_sizey_min.target
-%%DATADIR%%/targets/torso/torso_sizez_min.target
+%%DATADIR%%/targets/torso/torso_lenght_min.target
+%%DATADIR%%/targets/torso/torso_scapula_protrunding.target
+%%DATADIR%%/targets/torso/torso_up.target
+%%DATADIR%%/targets/torso/torso_width_min.target
%%DATADIR%%/targets/torso/trapezious_muscular.target
-%%DATADIR%%/targets/weight/120_kg.bs
-%%PORTDOCS%%%%DOCSDIR%%/AUTHORS
-%%PORTDOCS%%%%DOCSDIR%%/COPYING
-%%PORTDOCS%%%%DOCSDIR%%/ChangeLog
-%%PORTDOCS%%%%DOCSDIR%%/INSTALL
-%%PORTDOCS%%%%DOCSDIR%%/NEWS
-%%PORTDOCS%%%%DOCSDIR%%/README
-%%PORTDOCS%%%%DOCSDIR%%/TODO
-@dirrm %%DATADIR%%/targets/weight
+%%DATADIR%%/targets/torso/upper_torso_height_min.target
+%%DATADIR%%/targets/torso2/l_scoliosis.target
+%%DATADIR%%/targets/torso2/l_torso_width_max.target
+%%DATADIR%%/targets/torso2/l_torso_width_min.target
+%%DATADIR%%/targets/torso2/r_scoliosis.target
+%%DATADIR%%/targets/torso2/r_torso_width_max.target
+%%DATADIR%%/targets/torso2/r_torso_width_min.target
+%%DATADIR%%/targets/torso2/torso_height_max.target
+%%DATADIR%%/targets/torso2/torso_height_min.target
+%%DATADIR%%/targets/torso2/torso_lordosis.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_left_canine_in.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_left_canine_left_rotated.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_left_canine_long.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_left_canine_none.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_left_canine_out.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_left_canine_right_rotated.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_left_central_incisor_in.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_left_central_incisor_l_broken.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_left_central_incisor_l_broken2.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_left_central_incisor_l_rotated.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_left_central_incisor_long.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_left_central_incisor_none.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_left_central_incisor_out.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_left_central_incisor_r_broken.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_left_central_incisor_r_broken2.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_left_central_incisor_right_rotated.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_left_lateral_central_incisor_none.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_left_lateral_incisor_in.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_left_lateral_incisor_left_rotated.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_left_lateral_incisor_long.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_left_lateral_incisor_out.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_left_lateral_incisor_right_rotated.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_right_canine_depth_min.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_right_canine_in.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_right_canine_left_rotated.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_right_canine_long.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_right_canine_none.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_right_canine_out.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_right_canine_right_rotated.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_right_canine_width_min.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_right_central_incisor_depth_min.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_right_central_incisor_in.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_right_central_incisor_l_broken.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_right_central_incisor_l_broken2.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_right_central_incisor_left_rotated.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_right_central_incisor_long.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_right_central_incisor_narrow.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_right_central_incisor_none.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_right_central_incisor_out.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_right_central_incisor_r_broken.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_right_central_incisor_r_broken2.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_right_central_incisor_right_rotated.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_right_central_incisor_width_min.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_right_lateral_central_incisor_none.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_right_lateral_incisor_depth_min.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_right_lateral_incisor_in.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_right_lateral_incisor_left_rotated.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_right_lateral_incisor_long.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_right_lateral_incisor_out.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_right_lateral_incisor_right_rotated.target
+%%DATADIR%%/targets/upper_teeth_center/teeth_right_lateral_incisor_width_min.target
+%%DATADIR%%/targets/upper_teeth_left/teeth_left_first_molar_in.target
+%%DATADIR%%/targets/upper_teeth_left/teeth_left_first_molar_left_rotated.target
+%%DATADIR%%/targets/upper_teeth_left/teeth_left_first_molar_long.target
+%%DATADIR%%/targets/upper_teeth_left/teeth_left_first_molar_none.target
+%%DATADIR%%/targets/upper_teeth_left/teeth_left_first_molar_out.target
+%%DATADIR%%/targets/upper_teeth_left/teeth_left_first_molar_right_rotated.target
+%%DATADIR%%/targets/upper_teeth_left/teeth_left_first_premolar_in.target
+%%DATADIR%%/targets/upper_teeth_left/teeth_left_first_premolar_left_rotated.target
+%%DATADIR%%/targets/upper_teeth_left/teeth_left_first_premolar_long.target
+%%DATADIR%%/targets/upper_teeth_left/teeth_left_first_premolar_none.target
+%%DATADIR%%/targets/upper_teeth_left/teeth_left_first_premolar_out.target
+%%DATADIR%%/targets/upper_teeth_left/teeth_left_first_premolar_right_rotated.target
+%%DATADIR%%/targets/upper_teeth_left/teeth_left_second_molar_in.target
+%%DATADIR%%/targets/upper_teeth_left/teeth_left_second_molar_left_rotated.target
+%%DATADIR%%/targets/upper_teeth_left/teeth_left_second_molar_none.target
+%%DATADIR%%/targets/upper_teeth_left/teeth_left_second_molar_out.target
+%%DATADIR%%/targets/upper_teeth_left/teeth_left_second_molar_right_rotated.target
+%%DATADIR%%/targets/upper_teeth_left/teeth_left_second_molar_up.target
+%%DATADIR%%/targets/upper_teeth_left/teeth_left_second_premolar_in.target
+%%DATADIR%%/targets/upper_teeth_left/teeth_left_second_premolar_left_rotated.target
+%%DATADIR%%/targets/upper_teeth_left/teeth_left_second_premolar_long.target
+%%DATADIR%%/targets/upper_teeth_left/teeth_left_second_premolar_none.target
+%%DATADIR%%/targets/upper_teeth_left/teeth_left_second_premolar_out.target
+%%DATADIR%%/targets/upper_teeth_left/teeth_left_second_premolar_right_rotated.target
+%%DATADIR%%/targets/upper_teeth_left/teeth_left_third_molar_in.target
+%%DATADIR%%/targets/upper_teeth_left/teeth_left_third_molar_left_rotated.target
+%%DATADIR%%/targets/upper_teeth_left/teeth_left_third_molar_none.target
+%%DATADIR%%/targets/upper_teeth_left/teeth_left_third_molar_out.target
+%%DATADIR%%/targets/upper_teeth_left/teeth_left_third_molar_right_rotated.target
+%%DATADIR%%/targets/upper_teeth_left/teeth_left_third_molar_up.target
+%%DATADIR%%/targets/upper_teeth_right/teeth_right_first_molar_depth_min.target
+%%DATADIR%%/targets/upper_teeth_right/teeth_right_first_molar_in.target
+%%DATADIR%%/targets/upper_teeth_right/teeth_right_first_molar_left_rotated.target
+%%DATADIR%%/targets/upper_teeth_right/teeth_right_first_molar_long.target
+%%DATADIR%%/targets/upper_teeth_right/teeth_right_first_molar_none.target
+%%DATADIR%%/targets/upper_teeth_right/teeth_right_first_molar_out.target
+%%DATADIR%%/targets/upper_teeth_right/teeth_right_first_molar_right_rotated.target
+%%DATADIR%%/targets/upper_teeth_right/teeth_right_first_molar_width_min.target
+%%DATADIR%%/targets/upper_teeth_right/teeth_right_first_premolar_depth_min.target
+%%DATADIR%%/targets/upper_teeth_right/teeth_right_first_premolar_in.target
+%%DATADIR%%/targets/upper_teeth_right/teeth_right_first_premolar_left_rotated.target
+%%DATADIR%%/targets/upper_teeth_right/teeth_right_first_premolar_long.target
+%%DATADIR%%/targets/upper_teeth_right/teeth_right_first_premolar_none.target
+%%DATADIR%%/targets/upper_teeth_right/teeth_right_first_premolar_out.target
+%%DATADIR%%/targets/upper_teeth_right/teeth_right_first_premolar_right_rotated.target
+%%DATADIR%%/targets/upper_teeth_right/teeth_right_first_premolar_width_min.target
+%%DATADIR%%/targets/upper_teeth_right/teeth_right_second_molar_depth_min.target
+%%DATADIR%%/targets/upper_teeth_right/teeth_right_second_molar_in.target
+%%DATADIR%%/targets/upper_teeth_right/teeth_right_second_molar_left_rotated.target
+%%DATADIR%%/targets/upper_teeth_right/teeth_right_second_molar_long.target
+%%DATADIR%%/targets/upper_teeth_right/teeth_right_second_molar_none.target
+%%DATADIR%%/targets/upper_teeth_right/teeth_right_second_molar_out.target
+%%DATADIR%%/targets/upper_teeth_right/teeth_right_second_molar_right_rotated.target
+%%DATADIR%%/targets/upper_teeth_right/teeth_right_second_molar_width_min.target
+%%DATADIR%%/targets/upper_teeth_right/teeth_right_second_premolar_depth_min.target
+%%DATADIR%%/targets/upper_teeth_right/teeth_right_second_premolar_in.target
+%%DATADIR%%/targets/upper_teeth_right/teeth_right_second_premolar_left_rotated.target
+%%DATADIR%%/targets/upper_teeth_right/teeth_right_second_premolar_long.target
+%%DATADIR%%/targets/upper_teeth_right/teeth_right_second_premolar_none.target
+%%DATADIR%%/targets/upper_teeth_right/teeth_right_second_premolar_out.target
+%%DATADIR%%/targets/upper_teeth_right/teeth_right_second_premolar_right_rotated.target
+%%DATADIR%%/targets/upper_teeth_right/teeth_right_second_premolar_width_min.target
+%%DATADIR%%/targets/upper_teeth_right/teeth_right_third_molar_in.target
+%%DATADIR%%/targets/upper_teeth_right/teeth_right_third_molar_left_rotated.target
+%%DATADIR%%/targets/upper_teeth_right/teeth_right_third_molar_long.target
+%%DATADIR%%/targets/upper_teeth_right/teeth_right_third_molar_none.target
+%%DATADIR%%/targets/upper_teeth_right/teeth_right_third_molar_out.target
+%%DATADIR%%/targets/upper_teeth_right/teeth_right_third_molar_right_rotated.target
+%%DATADIR%%/targets/upper_teeth_right/teeth_right_third_molar_width_min.target
+@dirrm %%DATADIR%%/targets/upper_teeth_right
+@dirrm %%DATADIR%%/targets/upper_teeth_left
+@dirrm %%DATADIR%%/targets/upper_teeth_center
+@dirrm %%DATADIR%%/targets/torso2
@dirrm %%DATADIR%%/targets/torso
+@dirrm %%DATADIR%%/targets/tongue
+@dirrm %%DATADIR%%/targets/temp_l_foot
+@dirrm %%DATADIR%%/targets/temp
+@dirrm %%DATADIR%%/targets/teeth
@dirrm %%DATADIR%%/targets/r_upper_leg
@dirrm %%DATADIR%%/targets/r_upper_arm
@dirrm %%DATADIR%%/targets/r_shoulder
+@dirrm %%DATADIR%%/targets/r_ringfinger
+@dirrm %%DATADIR%%/targets/r_pollex
+@dirrm %%DATADIR%%/targets/r_middlefinger
@dirrm %%DATADIR%%/targets/r_lower_leg
@dirrm %%DATADIR%%/targets/r_lower_arm
+@dirrm %%DATADIR%%/targets/r_littlefinger
+@dirrm %%DATADIR%%/targets/r_hand2
@dirrm %%DATADIR%%/targets/r_hand
+@dirrm %%DATADIR%%/targets/r_forefinger
+@dirrm %%DATADIR%%/targets/r_foot2
@dirrm %%DATADIR%%/targets/r_foot
+@dirrm %%DATADIR%%/targets/r_eye2
@dirrm %%DATADIR%%/targets/r_eye
+@dirrm %%DATADIR%%/targets/r_ear2
@dirrm %%DATADIR%%/targets/r_ear
@dirrm %%DATADIR%%/targets/r_cheek
@dirrm %%DATADIR%%/targets/pelvis
+@dirrm %%DATADIR%%/targets/ns_torso2
+@dirrm %%DATADIR%%/targets/ns_torso
+@dirrm %%DATADIR%%/targets/ns_tongue
+@dirrm %%DATADIR%%/targets/ns_teeth
+@dirrm %%DATADIR%%/targets/ns_r_upper_leg
+@dirrm %%DATADIR%%/targets/ns_r_upper_arm
+@dirrm %%DATADIR%%/targets/ns_r_shoulder
+@dirrm %%DATADIR%%/targets/ns_r_ringfinger
+@dirrm %%DATADIR%%/targets/ns_r_pollex
+@dirrm %%DATADIR%%/targets/ns_r_middlefinger
+@dirrm %%DATADIR%%/targets/ns_r_lower_leg
+@dirrm %%DATADIR%%/targets/ns_r_lower_arm
+@dirrm %%DATADIR%%/targets/ns_r_littlefinger
@dirrm %%DATADIR%%/targets/ns_r_hand
+@dirrm %%DATADIR%%/targets/ns_r_forefinger
+@dirrm %%DATADIR%%/targets/ns_r_foot2
@dirrm %%DATADIR%%/targets/ns_r_foot
+@dirrm %%DATADIR%%/targets/ns_r_eye2
+@dirrm %%DATADIR%%/targets/ns_r_eye
+@dirrm %%DATADIR%%/targets/ns_r_ear2
@dirrm %%DATADIR%%/targets/ns_r_ear
+@dirrm %%DATADIR%%/targets/ns_r_cheek
+@dirrm %%DATADIR%%/targets/ns_pelvis
+@dirrm %%DATADIR%%/targets/ns_nose2
+@dirrm %%DATADIR%%/targets/ns_nose
+@dirrm %%DATADIR%%/targets/ns_neck
+@dirrm %%DATADIR%%/targets/ns_muzzle
+@dirrm %%DATADIR%%/targets/ns_mouth3
+@dirrm %%DATADIR%%/targets/ns_mouth2
+@dirrm %%DATADIR%%/targets/ns_mouth
+@dirrm %%DATADIR%%/targets/ns_l_upper_leg
+@dirrm %%DATADIR%%/targets/ns_l_upper_arm
+@dirrm %%DATADIR%%/targets/ns_l_shoulder
+@dirrm %%DATADIR%%/targets/ns_l_ringfinger
+@dirrm %%DATADIR%%/targets/ns_l_pollex
+@dirrm %%DATADIR%%/targets/ns_l_middlefinger
+@dirrm %%DATADIR%%/targets/ns_l_lower_leg
+@dirrm %%DATADIR%%/targets/ns_l_lower_arm
+@dirrm %%DATADIR%%/targets/ns_l_littlefinger
@dirrm %%DATADIR%%/targets/ns_l_hand
+@dirrm %%DATADIR%%/targets/ns_l_forefinger
+@dirrm %%DATADIR%%/targets/ns_l_foot2
@dirrm %%DATADIR%%/targets/ns_l_foot
+@dirrm %%DATADIR%%/targets/ns_l_eye2
+@dirrm %%DATADIR%%/targets/ns_l_eye
+@dirrm %%DATADIR%%/targets/ns_l_ear2
@dirrm %%DATADIR%%/targets/ns_l_ear
+@dirrm %%DATADIR%%/targets/ns_l_cheek
+@dirrm %%DATADIR%%/targets/ns_head2
@dirrm %%DATADIR%%/targets/ns_head
+@dirrm %%DATADIR%%/targets/ns_forehead
@dirrm %%DATADIR%%/targets/ns_eyes
+@dirrm %%DATADIR%%/targets/ns_ears
+@dirrm %%DATADIR%%/targets/ns_chin_jaw
+@dirrm %%DATADIR%%/targets/ns_brow_ridge
+@dirrm %%DATADIR%%/targets/ns_abdomen
+@dirrm %%DATADIR%%/targets/nose2
@dirrm %%DATADIR%%/targets/nose
@dirrm %%DATADIR%%/targets/neck
-@dirrm %%DATADIR%%/targets/nail_fantasy
-@dirrm %%DATADIR%%/targets/muscle
+@dirrm %%DATADIR%%/targets/muzzle
+@dirrm %%DATADIR%%/targets/mouth3
+@dirrm %%DATADIR%%/targets/mouth2
@dirrm %%DATADIR%%/targets/mouth
@dirrm %%DATADIR%%/targets/mees_movements
@dirrm %%DATADIR%%/targets/mees_gesture
+@dirrm %%DATADIR%%/targets/mees_fantasies
@dirrm %%DATADIR%%/targets/mees_emotions
@dirrm %%DATADIR%%/targets/mees_builders
+@dirrm %%DATADIR%%/targets/lower_teeth_right
+@dirrm %%DATADIR%%/targets/lower_teeth_left
+@dirrm %%DATADIR%%/targets/lower_teeth_center
@dirrm %%DATADIR%%/targets/l_upper_leg
@dirrm %%DATADIR%%/targets/l_upper_arm
@dirrm %%DATADIR%%/targets/l_shoulder
+@dirrm %%DATADIR%%/targets/l_ringfinger
+@dirrm %%DATADIR%%/targets/l_pollex
+@dirrm %%DATADIR%%/targets/l_middlefinger
@dirrm %%DATADIR%%/targets/l_lower_leg
@dirrm %%DATADIR%%/targets/l_lower_arm
+@dirrm %%DATADIR%%/targets/l_littlefinger
+@dirrm %%DATADIR%%/targets/l_hand2
@dirrm %%DATADIR%%/targets/l_hand
+@dirrm %%DATADIR%%/targets/l_forefinger
+@dirrm %%DATADIR%%/targets/l_foot2
@dirrm %%DATADIR%%/targets/l_foot
+@dirrm %%DATADIR%%/targets/l_eye2
@dirrm %%DATADIR%%/targets/l_eye
+@dirrm %%DATADIR%%/targets/l_ear2
@dirrm %%DATADIR%%/targets/l_ear
@dirrm %%DATADIR%%/targets/l_cheek
+@dirrm %%DATADIR%%/targets/head2
@dirrm %%DATADIR%%/targets/head
-@dirrm %%DATADIR%%/targets/gender
@dirrm %%DATADIR%%/targets/forehead
-@dirrm %%DATADIR%%/targets/cinematics
+@dirrm %%DATADIR%%/targets/finishing
+@dirrm %%DATADIR%%/targets/eyes
+@dirrm %%DATADIR%%/targets/ears
+@dirrm %%DATADIR%%/targets/chin_jaw2
@dirrm %%DATADIR%%/targets/chin_jaw
+@dirrm %%DATADIR%%/targets/brow_ridge2
@dirrm %%DATADIR%%/targets/brow_ridge
-@dirrm %%DATADIR%%/targets/age
@dirrm %%DATADIR%%/targets/abdomen
@dirrm %%DATADIR%%/targets
-@dirrm %%DATADIR%%/UI/tgimg/weight
-@dirrm %%DATADIR%%/UI/tgimg/torso
-@dirrm %%DATADIR%%/UI/tgimg/scrawny
-@dirrm %%DATADIR%%/UI/tgimg/r_upper_leg
-@dirrm %%DATADIR%%/UI/tgimg/r_upper_arm
-@dirrm %%DATADIR%%/UI/tgimg/r_shoulder
-@dirrm %%DATADIR%%/UI/tgimg/r_lower_leg
-@dirrm %%DATADIR%%/UI/tgimg/r_lower_arm
-@dirrm %%DATADIR%%/UI/tgimg/r_hand
-@dirrm %%DATADIR%%/UI/tgimg/r_foot
-@dirrm %%DATADIR%%/UI/tgimg/r_eye
-@dirrm %%DATADIR%%/UI/tgimg/r_ear
-@dirrm %%DATADIR%%/UI/tgimg/r_cheek
-@dirrm %%DATADIR%%/UI/tgimg/pelvis
-@dirrm %%DATADIR%%/UI/tgimg/ns_torso
-@dirrm %%DATADIR%%/UI/tgimg/ns_r_hand
-@dirrm %%DATADIR%%/UI/tgimg/ns_r_ear
-@dirrm %%DATADIR%%/UI/tgimg/ns_l_hand
-@dirrm %%DATADIR%%/UI/tgimg/ns_l_ear
-@dirrm %%DATADIR%%/UI/tgimg/ns_head
-@dirrm %%DATADIR%%/UI/tgimg/nose_fantasy
-@dirrm %%DATADIR%%/UI/tgimg/nose
-@dirrm %%DATADIR%%/UI/tgimg/neck
-@dirrm %%DATADIR%%/UI/tgimg/nail_fantasy
-@dirrm %%DATADIR%%/UI/tgimg/muscle
-@dirrm %%DATADIR%%/UI/tgimg/mouth
-@dirrm %%DATADIR%%/UI/tgimg/mees_movements
-@dirrm %%DATADIR%%/UI/tgimg/mees_gesture
-@dirrm %%DATADIR%%/UI/tgimg/mees_emotions
-@dirrm %%DATADIR%%/UI/tgimg/mees_builders
-@dirrm %%DATADIR%%/UI/tgimg/l_upper_leg
-@dirrm %%DATADIR%%/UI/tgimg/l_upper_arm
-@dirrm %%DATADIR%%/UI/tgimg/l_shoulder
-@dirrm %%DATADIR%%/UI/tgimg/l_lower_leg
-@dirrm %%DATADIR%%/UI/tgimg/l_lower_arm
-@dirrm %%DATADIR%%/UI/tgimg/l_hand
-@dirrm %%DATADIR%%/UI/tgimg/l_foot
-@dirrm %%DATADIR%%/UI/tgimg/l_eye
-@dirrm %%DATADIR%%/UI/tgimg/l_ear
-@dirrm %%DATADIR%%/UI/tgimg/l_cheek
-@dirrm %%DATADIR%%/UI/tgimg/head
-@dirrm %%DATADIR%%/UI/tgimg/gender
-@dirrm %%DATADIR%%/UI/tgimg/forehead
-@dirrm %%DATADIR%%/UI/tgimg/eyes_movements
-@dirrm %%DATADIR%%/UI/tgimg/chin_jaw
-@dirrm %%DATADIR%%/UI/tgimg/brow_ridge
-@dirrm %%DATADIR%%/UI/tgimg/age
-@dirrm %%DATADIR%%/UI/tgimg/abdomen
-@dirrm %%DATADIR%%/UI/tgimg
-@dirrm %%DATADIR%%/UI/ns_anatomy
-@dirrm %%DATADIR%%/UI/images
-@dirrm %%DATADIR%%/UI/anatomy
-@dirrm %%DATADIR%%/UI
+@dirrm %%DATADIR%%/rotations/360_upper_torso
+@dirrm %%DATADIR%%/rotations/340_lower_torso
+@dirrm %%DATADIR%%/rotations/320_neck
+@dirrm %%DATADIR%%/rotations/300_head
+@dirrm %%DATADIR%%/rotations/280_left_collar
+@dirrm %%DATADIR%%/rotations/260_right_collar
+@dirrm %%DATADIR%%/rotations/240_left_upper_arm
+@dirrm %%DATADIR%%/rotations/220_right_upper_arm
+@dirrm %%DATADIR%%/rotations/200_left_upper_leg
+@dirrm %%DATADIR%%/rotations/180_right_upper_leg
+@dirrm %%DATADIR%%/rotations/160_left_lower_arm
+@dirrm %%DATADIR%%/rotations/140_right_lower_arm
+@dirrm %%DATADIR%%/rotations/120_left_lower_leg
+@dirrm %%DATADIR%%/rotations/100_right_lower_leg
+@dirrm %%DATADIR%%/rotations/080_left_hand
+@dirrm %%DATADIR%%/rotations/075_left_littlefinger_1
+@dirrm %%DATADIR%%/rotations/074_left_littlefinger_2
+@dirrm %%DATADIR%%/rotations/073_left_littlefinger_3
+@dirrm %%DATADIR%%/rotations/072_left_ringfinger_1
+@dirrm %%DATADIR%%/rotations/071_left_ringfinger_2
+@dirrm %%DATADIR%%/rotations/070_left_ringfinger_3
+@dirrm %%DATADIR%%/rotations/069_left_middlefinger_1
+@dirrm %%DATADIR%%/rotations/068_left_middlefinger_2
+@dirrm %%DATADIR%%/rotations/067_left_middlefinger_3
+@dirrm %%DATADIR%%/rotations/066_left_forefinger_1
+@dirrm %%DATADIR%%/rotations/065_left_forefinger_2
+@dirrm %%DATADIR%%/rotations/064_left_forefinger_3
+@dirrm %%DATADIR%%/rotations/063_left_pollex_1
+@dirrm %%DATADIR%%/rotations/062_left_pollex_2
+@dirrm %%DATADIR%%/rotations/061_left_pollex_3
+@dirrm %%DATADIR%%/rotations/060_right_hand
+@dirrm %%DATADIR%%/rotations/055_right_littlefinger_1
+@dirrm %%DATADIR%%/rotations/054_right_littlefinger_2
+@dirrm %%DATADIR%%/rotations/053_right_littlefinger_3
+@dirrm %%DATADIR%%/rotations/052_right_ringfinger_1
+@dirrm %%DATADIR%%/rotations/051_right_ringfinger_2
+@dirrm %%DATADIR%%/rotations/050_right_ringfinger_3
+@dirrm %%DATADIR%%/rotations/049_right_middlefinger_1
+@dirrm %%DATADIR%%/rotations/048_right_middlefinger_2
+@dirrm %%DATADIR%%/rotations/047_right_middlefinger_3
+@dirrm %%DATADIR%%/rotations/046_right_forefinger_1
+@dirrm %%DATADIR%%/rotations/045_right_forefinger_2
+@dirrm %%DATADIR%%/rotations/044_right_forefinger_3
+@dirrm %%DATADIR%%/rotations/043_right_pollex_1
+@dirrm %%DATADIR%%/rotations/042_right_pollex_2
+@dirrm %%DATADIR%%/rotations/041_right_pollex_3
+@dirrm %%DATADIR%%/rotations/040_left_foot
+@dirrm %%DATADIR%%/rotations/030_left_footfinger_1_1
+@dirrm %%DATADIR%%/rotations/029_left_footfinger_1_2
+@dirrm %%DATADIR%%/rotations/028_left_footfinger_2_1
+@dirrm %%DATADIR%%/rotations/027_left_footfinger_2_2
+@dirrm %%DATADIR%%/rotations/026_left_footfinger_3_1
+@dirrm %%DATADIR%%/rotations/025_left_footfinger_3_2
+@dirrm %%DATADIR%%/rotations/024_left_footfinger_4_1
+@dirrm %%DATADIR%%/rotations/023_left_footfinger_4_2
+@dirrm %%DATADIR%%/rotations/022_left_footfinger_5_1
+@dirrm %%DATADIR%%/rotations/021_left_footfinger_5_2
+@dirrm %%DATADIR%%/rotations/020_right_foot
+@dirrm %%DATADIR%%/rotations/009_right_footfinger_1_1
+@dirrm %%DATADIR%%/rotations/008_right_footfinger_1_2
+@dirrm %%DATADIR%%/rotations/007_right_footfinger_2_1
+@dirrm %%DATADIR%%/rotations/006_right_footfinger_2_2
+@dirrm %%DATADIR%%/rotations/005_right_footfinger_3_1
+@dirrm %%DATADIR%%/rotations/004_right_footfinger_3_2
+@dirrm %%DATADIR%%/rotations/003_right_footfinger_4_1
+@dirrm %%DATADIR%%/rotations/002_right_footfinger_4_2
+@dirrm %%DATADIR%%/rotations/001_right_footfinger_5_1
+@dirrm %%DATADIR%%/rotations/000_right_footfinger_5_2
+@dirrm %%DATADIR%%/rotations
+@dirrm %%DATADIR%%/rib_data/textures_data
+@dirrm %%DATADIR%%/rib_data/shaders_data
+@dirrm %%DATADIR%%/rib_data
+@dirrm %%DATADIR%%/ribObjs
+@dirrm %%DATADIR%%/render/torso
+@dirrm %%DATADIR%%/render/ns_l_eye
+@dirrm %%DATADIR%%/render/ns_head
+@dirrm %%DATADIR%%/render/neck
+@dirrm %%DATADIR%%/render/l_foot
+@dirrm %%DATADIR%%/render/l_eye2
+@dirrm %%DATADIR%%/render/l_eye
+@dirrm %%DATADIR%%/render
+@dirrm %%DATADIR%%/pixmaps/ui
+@dirrm %%DATADIR%%/pixmaps/tgimg/upper_teeth_right
+@dirrm %%DATADIR%%/pixmaps/tgimg/upper_teeth_left
+@dirrm %%DATADIR%%/pixmaps/tgimg/upper_teeth_center
+@dirrm %%DATADIR%%/pixmaps/tgimg/torso2
+@dirrm %%DATADIR%%/pixmaps/tgimg/torso
+@dirrm %%DATADIR%%/pixmaps/tgimg/tongue
+@dirrm %%DATADIR%%/pixmaps/tgimg/temp
+@dirrm %%DATADIR%%/pixmaps/tgimg/teeth
+@dirrm %%DATADIR%%/pixmaps/tgimg/r_upper_leg
+@dirrm %%DATADIR%%/pixmaps/tgimg/r_upper_arm
+@dirrm %%DATADIR%%/pixmaps/tgimg/r_shoulder
+@dirrm %%DATADIR%%/pixmaps/tgimg/r_ringfinger
+@dirrm %%DATADIR%%/pixmaps/tgimg/r_pollex
+@dirrm %%DATADIR%%/pixmaps/tgimg/r_middlefinger
+@dirrm %%DATADIR%%/pixmaps/tgimg/r_lower_leg
+@dirrm %%DATADIR%%/pixmaps/tgimg/r_lower_arm
+@dirrm %%DATADIR%%/pixmaps/tgimg/r_littlefinger
+@dirrm %%DATADIR%%/pixmaps/tgimg/r_hand2
+@dirrm %%DATADIR%%/pixmaps/tgimg/r_hand
+@dirrm %%DATADIR%%/pixmaps/tgimg/r_forefinger
+@dirrm %%DATADIR%%/pixmaps/tgimg/r_foot
+@dirrm %%DATADIR%%/pixmaps/tgimg/r_eye2
+@dirrm %%DATADIR%%/pixmaps/tgimg/r_eye
+@dirrm %%DATADIR%%/pixmaps/tgimg/r_ear2
+@dirrm %%DATADIR%%/pixmaps/tgimg/r_ear
+@dirrm %%DATADIR%%/pixmaps/tgimg/r_cheek
+@dirrm %%DATADIR%%/pixmaps/tgimg/pelvis
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_torso2
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_torso
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_tongue
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_teeth
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_r_upper_leg
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_r_upper_arm
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_r_shoulder
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_r_ringfinger
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_r_pollex
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_r_middlefinger
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_r_lower_leg
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_r_lower_arm
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_r_littlefinger
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_r_hand
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_r_forefinger
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_r_foot2
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_r_foot
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_r_eye
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_r_ear2
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_r_ear
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_r_cheek
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_pelvis
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_nose2
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_nose
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_neck
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_muzzle
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_mouth3
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_mouth2
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_mouth
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_l_upper_leg
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_l_upper_arm
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_l_shoulder
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_l_ringfinger
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_l_pollex
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_l_middlefinger
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_l_lower_leg
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_l_lower_arm
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_l_littlefinger
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_l_hand
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_l_forefinger
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_l_foot2
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_l_foot
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_l_eye
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_l_ear2
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_l_ear
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_l_cheek
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_head2
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_head
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_forehead
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_eyes
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_chin_jaw
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_brow_ridge
+@dirrm %%DATADIR%%/pixmaps/tgimg/ns_abdomen
+@dirrm %%DATADIR%%/pixmaps/tgimg/nose2
+@dirrm %%DATADIR%%/pixmaps/tgimg/nose
+@dirrm %%DATADIR%%/pixmaps/tgimg/neck
+@dirrm %%DATADIR%%/pixmaps/tgimg/mouth3
+@dirrm %%DATADIR%%/pixmaps/tgimg/mouth2
+@dirrm %%DATADIR%%/pixmaps/tgimg/mouth
+@dirrm %%DATADIR%%/pixmaps/tgimg/lower_teeth_right
+@dirrm %%DATADIR%%/pixmaps/tgimg/lower_teeth_left
+@dirrm %%DATADIR%%/pixmaps/tgimg/lower_teeth_center
+@dirrm %%DATADIR%%/pixmaps/tgimg/l_upper_leg
+@dirrm %%DATADIR%%/pixmaps/tgimg/l_upper_arm
+@dirrm %%DATADIR%%/pixmaps/tgimg/l_shoulder
+@dirrm %%DATADIR%%/pixmaps/tgimg/l_ringfinger
+@dirrm %%DATADIR%%/pixmaps/tgimg/l_pollex
+@dirrm %%DATADIR%%/pixmaps/tgimg/l_middlefinger
+@dirrm %%DATADIR%%/pixmaps/tgimg/l_lower_leg
+@dirrm %%DATADIR%%/pixmaps/tgimg/l_lower_arm
+@dirrm %%DATADIR%%/pixmaps/tgimg/l_littlefinger
+@dirrm %%DATADIR%%/pixmaps/tgimg/l_hand2
+@dirrm %%DATADIR%%/pixmaps/tgimg/l_hand
+@dirrm %%DATADIR%%/pixmaps/tgimg/l_forefinger
+@dirrm %%DATADIR%%/pixmaps/tgimg/l_foot
+@dirrm %%DATADIR%%/pixmaps/tgimg/l_eye2
+@dirrm %%DATADIR%%/pixmaps/tgimg/l_eye
+@dirrm %%DATADIR%%/pixmaps/tgimg/l_ear2
+@dirrm %%DATADIR%%/pixmaps/tgimg/l_ear
+@dirrm %%DATADIR%%/pixmaps/tgimg/l_cheek
+@dirrm %%DATADIR%%/pixmaps/tgimg/head
+@dirrm %%DATADIR%%/pixmaps/tgimg/forehead
+@dirrm %%DATADIR%%/pixmaps/tgimg/chin_jaw2
+@dirrm %%DATADIR%%/pixmaps/tgimg/chin_jaw
+@dirrm %%DATADIR%%/pixmaps/tgimg/brow_ridge
+@dirrm %%DATADIR%%/pixmaps/tgimg/abdomen
+@dirrm %%DATADIR%%/pixmaps/tgimg/360_upper_torso
+@dirrm %%DATADIR%%/pixmaps/tgimg/340_lower_torso
+@dirrm %%DATADIR%%/pixmaps/tgimg/320_neck
+@dirrm %%DATADIR%%/pixmaps/tgimg/300_head
+@dirrm %%DATADIR%%/pixmaps/tgimg/280_left_collar
+@dirrm %%DATADIR%%/pixmaps/tgimg/260_right_collar
+@dirrm %%DATADIR%%/pixmaps/tgimg/240_left_upper_arm
+@dirrm %%DATADIR%%/pixmaps/tgimg/220_right_upper_arm
+@dirrm %%DATADIR%%/pixmaps/tgimg/200_left_upper_leg
+@dirrm %%DATADIR%%/pixmaps/tgimg/180_right_upper_leg
+@dirrm %%DATADIR%%/pixmaps/tgimg/160_left_lower_arm
+@dirrm %%DATADIR%%/pixmaps/tgimg/140_right_lower_arm
+@dirrm %%DATADIR%%/pixmaps/tgimg/120_left_lower_leg
+@dirrm %%DATADIR%%/pixmaps/tgimg/100_right_lower_leg
+@dirrm %%DATADIR%%/pixmaps/tgimg/080_left_hand
+@dirrm %%DATADIR%%/pixmaps/tgimg/075_left_littlefinger_1
+@dirrm %%DATADIR%%/pixmaps/tgimg/074_left_littlefinger_2
+@dirrm %%DATADIR%%/pixmaps/tgimg/073_left_littlefinger_3
+@dirrm %%DATADIR%%/pixmaps/tgimg/072_left_ringfinger_1
+@dirrm %%DATADIR%%/pixmaps/tgimg/071_left_ringfinger_2
+@dirrm %%DATADIR%%/pixmaps/tgimg/070_left_ringfinger_3
+@dirrm %%DATADIR%%/pixmaps/tgimg/069_left_middlefinger_1
+@dirrm %%DATADIR%%/pixmaps/tgimg/068_left_middlefinger_2
+@dirrm %%DATADIR%%/pixmaps/tgimg/067_left_middlefinger_3
+@dirrm %%DATADIR%%/pixmaps/tgimg/066_left_forefinger_1
+@dirrm %%DATADIR%%/pixmaps/tgimg/065_left_forefinger_2
+@dirrm %%DATADIR%%/pixmaps/tgimg/064_left_forefinger_3
+@dirrm %%DATADIR%%/pixmaps/tgimg/063_left_pollex_1
+@dirrm %%DATADIR%%/pixmaps/tgimg/062_left_pollex_2
+@dirrm %%DATADIR%%/pixmaps/tgimg/061_left_pollex_3
+@dirrm %%DATADIR%%/pixmaps/tgimg/060_right_hand
+@dirrm %%DATADIR%%/pixmaps/tgimg/055_right_littlefinger_1
+@dirrm %%DATADIR%%/pixmaps/tgimg/054_right_littlefinger_2
+@dirrm %%DATADIR%%/pixmaps/tgimg/053_right_littlefinger_3
+@dirrm %%DATADIR%%/pixmaps/tgimg/052_right_ringfinger_1
+@dirrm %%DATADIR%%/pixmaps/tgimg/051_right_ringfinger_2
+@dirrm %%DATADIR%%/pixmaps/tgimg/050_right_ringfinger_3
+@dirrm %%DATADIR%%/pixmaps/tgimg/049_right_middlefinger_1
+@dirrm %%DATADIR%%/pixmaps/tgimg/048_right_middlefinger_2
+@dirrm %%DATADIR%%/pixmaps/tgimg/047_right_middlefinger_3
+@dirrm %%DATADIR%%/pixmaps/tgimg/046_right_forefinger_1
+@dirrm %%DATADIR%%/pixmaps/tgimg/045_right_forefinger_2
+@dirrm %%DATADIR%%/pixmaps/tgimg/044_right_forefinger_3
+@dirrm %%DATADIR%%/pixmaps/tgimg/043_right_pollex_1
+@dirrm %%DATADIR%%/pixmaps/tgimg/042_right_pollex_2
+@dirrm %%DATADIR%%/pixmaps/tgimg/041_right_pollex_3
+@dirrm %%DATADIR%%/pixmaps/tgimg/040_left_foot
+@dirrm %%DATADIR%%/pixmaps/tgimg/030_left_footfinger_1_1
+@dirrm %%DATADIR%%/pixmaps/tgimg/029_left_footfinger_1_2
+@dirrm %%DATADIR%%/pixmaps/tgimg/028_left_footfinger_2_1
+@dirrm %%DATADIR%%/pixmaps/tgimg/027_left_footfinger_2_2
+@dirrm %%DATADIR%%/pixmaps/tgimg/026_left_footfinger_3_1
+@dirrm %%DATADIR%%/pixmaps/tgimg/025_left_footfinger_3_2
+@dirrm %%DATADIR%%/pixmaps/tgimg/024_left_footfinger_4_1
+@dirrm %%DATADIR%%/pixmaps/tgimg/023_left_footfinger_4_2
+@dirrm %%DATADIR%%/pixmaps/tgimg/022_left_footfinger_5_1
+@dirrm %%DATADIR%%/pixmaps/tgimg/021_left_footfinger_5_2
+@dirrm %%DATADIR%%/pixmaps/tgimg/020_right_foot
+@dirrm %%DATADIR%%/pixmaps/tgimg/009_right_footfinger_1_1
+@dirrm %%DATADIR%%/pixmaps/tgimg/008_right_footfinger_1_2
+@dirrm %%DATADIR%%/pixmaps/tgimg/007_right_footfinger_2_1
+@dirrm %%DATADIR%%/pixmaps/tgimg/006_right_footfinger_2_2
+@dirrm %%DATADIR%%/pixmaps/tgimg/005_right_footfinger_3_1
+@dirrm %%DATADIR%%/pixmaps/tgimg/004_right_footfinger_3_2
+@dirrm %%DATADIR%%/pixmaps/tgimg/003_right_footfinger_4_1
+@dirrm %%DATADIR%%/pixmaps/tgimg/002_right_footfinger_4_2
+@dirrm %%DATADIR%%/pixmaps/tgimg/001_right_footfinger_5_1
+@dirrm %%DATADIR%%/pixmaps/tgimg/000_right_footfinger_5_2
+@dirrm %%DATADIR%%/pixmaps/tgimg
+@dirrm %%DATADIR%%/pixmaps/bsimg/ns_characters2
+@dirrm %%DATADIR%%/pixmaps/bsimg/ns_characters1
+@dirrm %%DATADIR%%/pixmaps/bsimg/characters2
+@dirrm %%DATADIR%%/pixmaps/bsimg/characters1
+@dirrm %%DATADIR%%/pixmaps/bsimg
+@dirrm %%DATADIR%%/pixmaps
+@dirrm %%DATADIR%%/bs/types
+@dirrm %%DATADIR%%/bs/ns_characters2
+@dirrm %%DATADIR%%/bs/ns_characters1
+@dirrm %%DATADIR%%/bs/characters2
+@dirrm %%DATADIR%%/bs/characters1
+@dirrm %%DATADIR%%/bs
@dirrm %%DATADIR%%
%%PORTDOCS%%@dirrm %%DOCSDIR%%