# File lib/whois/record/parser/scanners/whois.denic.de.rb, line 65
          def parse_contact
            if @input.scan(/\[(.*)\]\n/)
              contact_name = @input[1]
              contact = {}
              while parse_pair(contact)
              end
              @ast[contact_name] = {
                "id" => nil,
                "name" => contact['Name'],
                "organization" => contact['Organisation'],
                "address" => contact['Address'],
                "city" => contact['City'],
                # 1.10.0, 1.11.0 || 2.0
                "zip" => contact['Pcode'] || contact['PostalCode'],
                "state" => nil,
                "country" => contact['Country'],
                "country_code" => contact['CountryCode'],
                "phone" => contact['Phone'],
                "fax" => contact['Fax'],
                "email" => contact['Email'],
                "created_on" => nil,
                "updated_on" => contact['Changed']
              }
            end
          end