#!/usr/bin/env perl

use File::Basename;
my $dir = dirname(__FILE__);
require "$dir"."/lib/common.pl";
my $common="common";

my $json=$common->parse();
if(defined($json->{'userCtx'})) {
  print "$json->{'userCtx'}->{'name'}";
  exit(0);
}
exit(1);
