package RPS::Import::ADA::v33;

use strict;
use warnings;

use lib '/app/tools/common/lib';
use Common::Assert;
use Common::UTF8;

use lib '/app/tools/rps/lib';
use RPS::Import::ServiceMap;

use base 'RPS::Import::ADA::v19';

sub _fieldMap {
    {
        labelName   => 'N',
        dateBegin   => 'U',
        productType => 'G',
        albumName   => 'E',
        artistName  => 'H',
        upc         => 'D',
        trackName   => 'I',

        isrc        => 'F',
        price       => 'L',
        units       => 'K',
        countryCode => 'O',
        serviceID   => 'C',
    };
}


1;
